Submission #399775

#TimeUsernameProblemLanguageResultExecution timeMemory
399775my99nDuathlon (APIO18_duathlon)C++14
0 / 100
1 ms332 KiB
#include<bits/stdc++.h> using namespace std; long long c (long long n) { return (n * n + n) >> 1; } long long solve (int n) { if (n == 3) return 1; return solve(n-1) + c(n-2); } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); long long n, m; cin >> n >> m; if (n != m) cout << 2ll*solve(n) << endl; if (n == m) cout << 2ll * c(n-2) * n << endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...