#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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |