# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1024033 | kustizus | Uzastopni (COCI17_uzastopni) | C++17 | 1 ms | 456 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>
#define ll long long int
using namespace std;
ll n;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for (ll i=2;i<=sqrt(n*2);i++)
if ((n-i*(i-1)/2)%i==0) cout<<(n-i*(i-1)/2)/i<<" "<<(n-i*(i-1)/2)/i+i-1<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |