# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
795523 | 2023-07-27T10:53:23 Z | RecursiveCo | 이상한 기계 (APIO19_strange_device) | C++14 | 555 ms | 33356 KB |
// CF template, version 3.0 #include <bits/stdc++.h> using namespace std; #define improvePerformance ios_base::sync_with_stdio(false); cin.tie(0) #define getTest int t; cin >> t #define eachTest for (int _var=0;_var<t;_var++) #define get(name) int (name); cin >> (name) #define out(o) cout << (o) #define getList(cnt, name) vector<int> (name); for (int _=0;_<(cnt);_++) { get(a); (name).push_back(a); } #define sortl(name) sort((name).begin(), (name).end()) #define rev(name) reverse((name).begin(), (name).end()) #define forto(name, var) for (int (var) = 0; (var) < (name); (var)++) #define decision(b) if (b){out("YES");}else{out("NO");} #define int long long int signed main() { improvePerformance; //getTest; //eachTest { get(n); get(A); get(B); bool toobig = (1e18 + A - 1) / A <= B; // should be good enough, theoretically. vector<pair<int, int>> events; forto(n, i) { get(l); get(r); if (!toobig) { if (r - l + 1 >= A * B) { out(A * B); return 0; } l %= A * B; r %= A * B; } events.push_back({l, -1}); events.push_back({r, 1}); if (r < l) { events.push_back({0, -1}); events.push_back({A * B - 1, 1}); } } int ans = 0; int last = -1; int m = events.size(); sortl(events); int balance = 0; forto(m, i) { balance -= events[i].second; if (last == -1 && balance > 0) { last = events[i].first; } else if (balance == 0) { ans += events[i].first - last + 1; last = -1; } } out(ans); //} }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 6 ms | 1160 KB | Output is correct |
3 | Correct | 5 ms | 1228 KB | Output is correct |
4 | Incorrect | 1 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 212 KB | Output is correct |
4 | Correct | 1 ms | 324 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 1 ms | 340 KB | Output is correct |
3 | Correct | 1 ms | 328 KB | Output is correct |
4 | Correct | 1 ms | 332 KB | Output is correct |
5 | Correct | 297 ms | 33244 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 400 ms | 33268 KB | Output is correct |
3 | Incorrect | 348 ms | 33228 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 400 ms | 33268 KB | Output is correct |
3 | Incorrect | 348 ms | 33228 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 400 ms | 33268 KB | Output is correct |
3 | Incorrect | 348 ms | 33228 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 42 ms | 4992 KB | Output is correct |
3 | Correct | 43 ms | 4988 KB | Output is correct |
4 | Correct | 555 ms | 33356 KB | Output is correct |
5 | Correct | 40 ms | 5052 KB | Output is correct |
6 | Correct | 41 ms | 5072 KB | Output is correct |
7 | Correct | 43 ms | 5032 KB | Output is correct |
8 | Correct | 45 ms | 5060 KB | Output is correct |
9 | Correct | 40 ms | 5020 KB | Output is correct |
10 | Correct | 43 ms | 4956 KB | Output is correct |
11 | Correct | 41 ms | 5060 KB | Output is correct |
12 | Correct | 52 ms | 5004 KB | Output is correct |
13 | Correct | 58 ms | 5068 KB | Output is correct |
14 | Correct | 442 ms | 33260 KB | Output is correct |
15 | Incorrect | 45 ms | 5060 KB | Output isn't correct |
16 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Correct | 6 ms | 1160 KB | Output is correct |
3 | Correct | 5 ms | 1228 KB | Output is correct |
4 | Incorrect | 1 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |