답안 #362548

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
362548 2021-02-03T16:03:19 Z Tenis0206 Subway (info1cup19_subway) C++11
0 / 100
1 ms 364 KB
#include <iostream>
#include <vector>

using namespace std;
int k;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin>>k;
    int nod = 1;
    int per = 0;
    vector<pair<int,int>> rez;
    rez.push_back({1,0});
    while(per<k)
    {
        if(per+nod<=k)
        {
            per+=nod;
            rez.push_back({nod+1,nod});
            ++nod;
            continue;
        }
        rez.push_back({nod+1,k-per});
        break;
    }
    cout<<nod+1<<'\n';
    for(auto it : rez)
    {
        cout<<it.first-1<<' '<<it.second-1<<'\n';
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -