# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
784496 | andecaandeci | 이상한 기계 (APIO19_strange_device) | C++17 | 1354 ms | 33400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
// #define i128 long long
#define i128 __int128_t
int n, a, b;
vector<pair<int, int>> sg;
const int maks = 1e18;
// i128 gcd(i128 a, i128 b) {
// if (b == 0) return a;
// return gcd(b, a%b);
// }
bool comp(pair<int, int> a, pair<int, int> b) {
return a.first < b.first or (a.first == b.first and a.second < b.second);
}
signed main() {
i128 temp;
// int temp;
int size;
cin >> n >> a >> b;
temp = (a/__gcd(a,b+1))*b;
// if ((b+1 % a) == 0) size = b;
// if (temp > maks) size = maks;
// else size = temp;
size = temp;
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |