답안 #362551

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

using namespace std;
int k;
int main()
{
    cin>>k;
    int nod = 0;
    int per = 0;
  //  vector<pair<int,int>> rez;
    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 380 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 380 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 380 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -