# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1102132 | ro9669 | Remittance (JOI19_remittance) | C++17 | 1 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define all(v) v.begin() , v.end()
#define sz(v) int(v.size())
#define unq(v) sort(all(v)); v.resize(unique(all(v)) - v.begin());
using namespace std;
typedef long long ll;
typedef pair<int , int> ii;
typedef pair<long long , int> lli;
const int maxN = int(1e6)+7;
int n;
ll a[maxN] , b[maxN];
void solve(){
cin >> n;
for (int i = 0 ; i < n ; i++){
cin >> a[i] >> b[i];
}
for (int t = 0 ; t < 100 ; t++){
for (int i = 0 ; i < n ; i++){
if (a[i] > b[i]){
ll x = (a[i] - b[i]) / 2;
a[i] -= 2 * x;
a[(i + 1) % n] += x;
}
}
}
for (int i = 0 ; i < n ; i++){
if (a[i] != b[i]){
cout << "No\n";
return;
}
}
cout << "Yes\n";
}
#define name "A"
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
if (fopen(name".INP" , "r")){
freopen(name".INP" , "r" , stdin);
freopen(name".OUT" , "w" , stdout);
}
int t = 1; //cin >> t;
while (t--) solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |