# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
839063 | 2023-08-28T14:54:41 Z | fanwen | Subway (info1cup19_subway) | C++17 | 581 ms | 76548 KB |
/** * author : pham van sam * created : 28 August 2023 (Monday) **/ #include <bits/stdc++.h> using namespace std; void you_make_it(void) { int k, n; cin >> k; for (int i = 1; i * (i + 1) <= 2 * k; ++i) { n = i; } for (int i = 0; i <= n; ++i) { cout << i << " " << i - 1 << '\n'; } int diff = k - 1LL * n * (n + 1) / 2; if(diff > 0) { cout << n + 1 << " " << diff - 1 << '\n'; } } signed main() { #ifdef LOCAL freopen("TASK.inp", "r", stdin); freopen("TASK.out", "w", stdout); #endif auto start_time = chrono::steady_clock::now(); cin.tie(0), cout.tie(0) -> sync_with_stdio(0); you_make_it(); auto end_time = chrono::steady_clock::now(); cerr << "\nExecution time : " << chrono::duration_cast <chrono::milliseconds> (end_time - start_time).count() << "[ms]" << endl; return (0 ^ 0); } // Dream it. Wish it. Do it.
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 581 ms | 76548 KB | Integer parameter [name=N] equals to 0, violates the range [1, 1000000] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 581 ms | 76548 KB | Integer parameter [name=N] equals to 0, violates the range [1, 1000000] |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 581 ms | 76548 KB | Integer parameter [name=N] equals to 0, violates the range [1, 1000000] |
2 | Halted | 0 ms | 0 KB | - |