# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
99778 | MatesV13 | Uzastopni (COCI17_uzastopni) | C++11 | 4 ms | 384 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;
long long n;
int main (){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
int x=sqrt(2*n);
for (int i=2;i<=x;i++){
if (i%2){if (n%i==0){cout << n/i - i/2 << " " << n/i + i/2 << endl;}}
else {if (n%i==i/2){cout << n/i - i/2 + 1 << " " << n/i + i/2 << endl;}}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |