답안 #755526

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
755526 2023-06-10T08:22:27 Z jmyszka2007 송금 (JOI19_remittance) C++17
0 / 100
1 ms 212 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	ll n;
	cin >> n;
	ll ans = 0;
	for(int i = 1; i <= n; i++) {
		ll a, b;
		cin >> a >> b;
		ans += (b - a) * (1ll << (i - 1));
	}
	if(ans % ((1ll << n) - 1)) {
		cout << "NO\n";
	}
	else {
		cout << "YES\n";
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -