Submission #99778

#TimeUsernameProblemLanguageResultExecution timeMemory
99778MatesV13Uzastopni (COCI17_uzastopni)C++11
80 / 80
4 ms384 KiB
#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 timeMemoryGrader output
Fetching results...