# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
81987 | Vasiljko | Uzastopni (COCI17_uzastopni) | C++14 | 17 ms | 664 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll MOD = 1e9+7;
const int N = 1e6;
ll n;
int main()
{
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
cin>>n;
for(int i=2;i<=N;i++){
ll up=2LL*n-1LL*i*(i-1);
ll down=2LL*i;
if(up%down==0&&up/down>0)cout<<up/down<<" "<<up/down+i-1<<"\n";
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |