답안 #3172

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
3172 2013-08-27T09:21:01 Z myungwoo 다각형 (GA5_polygon) C++
0 / 100
0 ms 1672 KB
#include <iostream>
using namespace std;

typedef long long lld;

lld A,B;

int main()
{
	cin >> A >> B;
	if (A&1) A++;
	if (B&1) B--;
	if (A < 3) A = 4;
	if (B < 3) B = 4;
	cout << (A+B)*((B-A)/2+1)/2 << endl;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1672 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Halted 0 ms 0 KB -