# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1129170 | mnbvcxz123 | Uzastopni (COCI17_uzastopni) | C++20 | 2 ms | 328 KiB |
#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... |