Submission #535696

#TimeUsernameProblemLanguageResultExecution timeMemory
535696pokmui9909다각형 (GA5_polygon)C++17
0 / 100
1 ms284 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ cin.tie(0) -> sync_with_stdio(false); ll L, R; cin >> L >> R; cout << (R == 1 ? 2 : (R / 2) * (R / 2 + 1)) - (L - 1 == 1 ? 2 : ((L - 1) / 2) * ((L - 1) / 2 + 1)); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...