Submission #2798

#TimeUsernameProblemLanguageResultExecution timeMemory
2798tncks0121다각형 (GA5_polygon)C++98
100 / 100
0 ms1088 KiB
#include<stdio.h> long long f(long long k) { if(k%2ll==1ll) k--; int kk=k/2ll; return kk*(kk+1ll); } int main() { long long a,b; scanf("%lld%lld",&a,&b); long long res = f(b)-f(a-1); if(a <= 2 && 2 <= b) res -= 2; printf("%lld",res); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...