Submission #225669

# Submission time Handle Problem Language Result Execution time Memory
225669 2020-04-21T08:41:51 Z BeanZ Strange Device (APIO19_strange_device) C++14
0 / 100
5000 ms 405624 KB
#include <bits/stdc++.h>
using namespace std;

#define ull unsigned long long
#define endl '\n'
#define ll long long
const int N = 2e5 + 5;
pair<ll, ll> c[N];
int main(){
        ios_base::sync_with_stdio(false);
        cin.tie(0);
        cout.tie(0);
        //freopen("VLJUM.INP", "r", stdin);
        //freopen("VLJUM.OUT", "w", stdout);
        ll n, a, b;
        cin >> n >> a >> b;
        ll sum = 0;
        for (int i = 1; i <= n; i++){
                cin >> c[i].first >> c[i].second;
                sum += c[i].second - c[i].first + 1;
        }
        if (sum <= 1000000){
                map<pair<ll,ll>, ll> mem;
                for (int i = 1; i <= n; i++){
                        for (int j = c[i].first; j <= c[i].second; j++){
                                mem[{(j + j/b) % a, j % b}] = 1;
                        }
                }
                cout << mem.size();
        }
}
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Execution timed out 5093 ms 405624 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Incorrect 4 ms 384 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Execution timed out 5086 ms 60688 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Runtime error 100 ms 14584 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Runtime error 100 ms 14584 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Runtime error 100 ms 14584 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Incorrect 51 ms 5516 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 384 KB Output is correct
2 Execution timed out 5093 ms 405624 KB Time limit exceeded
3 Halted 0 ms 0 KB -