Submission #170487

#TimeUsernameProblemLanguageResultExecution timeMemory
170487mcdx9524Bootfall (IZhO17_bootfall)C++14
0 / 100
2 ms376 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(0); cin.tie(0); int ans = 0; for (int i = 1; i <= 500; i++) { for (int j = 1; j <= 500; j++) { for (int k = 1; k <= 500; k++) { if (i + j + k >= 3 || i + j - 1 >= 1) { ans++; } } } } cout << ans << '\n'; 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...