Submission #874810

# Submission time Handle Problem Language Result Execution time Memory
874810 2023-11-17T20:33:07 Z vjudge1 Job Scheduling (CEOI12_jobs) C++14
0 / 100
1000 ms 65536 KB
// Parsa Jokar 2023 https://github.com/phictus/ioi

#pragma GCC optimize("Ofast")

#include <iostream>
#include <cstdint>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(false);

    uint64_t t;
    cin >> t;
    while (t--)
    {
        uint64_t n;
        cin >> n;
        cout << "1 ";
        for (uint64_t i = 0; i < n; i++)
            cout << (1ull << i) << ' ';
        cout << '\n';
    }

    return (0 ^ 0);
}
# Verdict Execution time Memory Grader output
1 Incorrect 32 ms 2396 KB Expected EOLN
2 Incorrect 29 ms 2396 KB Expected EOLN
3 Incorrect 35 ms 3408 KB Expected EOLN
4 Incorrect 42 ms 4440 KB Expected EOLN
5 Incorrect 49 ms 5968 KB Expected EOLN
6 Incorrect 56 ms 7764 KB Expected EOLN
7 Incorrect 63 ms 8788 KB Expected EOLN
8 Incorrect 68 ms 9300 KB Expected EOLN
9 Incorrect 191 ms 5652 KB Expected EOLN
10 Incorrect 182 ms 5708 KB Expected EOLN
11 Incorrect 38 ms 6708 KB Expected EOLN
12 Incorrect 43 ms 7504 KB Expected EOLN
13 Incorrect 62 ms 8896 KB Expected EOLN
14 Execution timed out 2619 ms 65536 KB Time limit exceeded
15 Incorrect 65 ms 11088 KB Expected EOLN
16 Execution timed out 1982 ms 65536 KB Time limit exceeded
17 Execution timed out 2584 ms 65536 KB Time limit exceeded
18 Runtime error 378 ms 63252 KB Memory limit exceeded
19 Execution timed out 2703 ms 65536 KB Time limit exceeded
20 Execution timed out 2601 ms 65536 KB Time limit exceeded