제출 #1076526

#제출 시각아이디문제언어결과실행 시간메모리
1076526ArturgoPortal (BOI24_portal)C++14
1 / 100
39 ms1796 KiB
#include <bits/stdc++.h> using namespace std; long long N, A, B, C, X, Y, OX, OY; int main() { cin >> N >> OX >> OY; N--; while(N--) { cin >> X >> Y; X -= OX; Y -= OX; while(X != 0) { int R = A / X; A -= R * X; B -= R * Y; if(C != 0) { B %= C; Y %= C; } swap(A, X); swap(B, Y); } while(Y != 0) { int R = C / Y; C -= R * Y; swap(C, Y); } } if(A == 0 || C == 0) cout << -1 << endl; else cout << (long long)abs(A * C) << endl; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...