# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
2712 | 2013-07-31T03:37:08 Z | gs13068 | 다각형 (GA5_polygon) | C++ | 0 ms | 1088 KB |
#include<cstdio> long long get(long long x) { if(x<2)return 0; return (x/2)*(x/2+1)-2; } int main() { long long a,b; scanf("%lld%lld",&a,&b); printf("%lld",get(b)-get(a-1)); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 1088 KB | Output is correct |
2 | Correct | 0 ms | 1088 KB | Output is correct |
3 | Correct | 0 ms | 1088 KB | Output is correct |
4 | Correct | 0 ms | 1088 KB | Output is correct |
5 | Correct | 0 ms | 1088 KB | Output is correct |