# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
437958 | blue | Worst Reporter 3 (JOI18_worst_reporter3) | C++17 | 861 ms | 27252 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
using namespace std;
/*
Let P(i, t) be the position of the person i at the time t
P(0, t) = t
P(1, t) = -1 + P(0, t)
Every contestant i jumps J[i] units to the right every J[i] seconds.
*/
const int maxN = 500000;
int N, Q;
int D[1+maxN];
long long J[1+maxN]; //jump distance/time
long long loc(int i, long long t)
{
return J[i] * (t/J[i]) - i;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int N, Q;
cin >> N >> Q;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |