답안 #690907

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
690907 2023-01-30T15:54:13 Z andrei_iorgulescu Subway (info1cup19_subway) C++14
0 / 100
0 ms 212 KB
#include <bits/stdc++.h>

using namespace std;

int k,n,t[100005];

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    cin >> k;
    while (k != 0)
    {
        n++;
        if (n == 1)
            t[1] = -1;
        else
        {
            k -= (n - 1);
            if (k >= 0)
                t[n] = n - 1;
            else
            {
                k += (n - 1);
                t[n] = k + 1;
                k = 0;
            }
        }
    }
    cout << n << '\n';
    for (int i = 1; i <= n; i++)
        cout << i - 1 << ' ' << t[i] << '\n';
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=N] equals to 0, violates the range [1, 1000000]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=N] equals to 0, violates the range [1, 1000000]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=N] equals to 0, violates the range [1, 1000000]
2 Halted 0 ms 0 KB -