Submission #106064

#TimeUsernameProblemLanguageResultExecution timeMemory
106064leonardaUzastopni (COCI17_uzastopni)C++14
72 / 80
3 ms384 KiB
#include<bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define F first #define S second typedef pair<int, int> pi; typedef long long int lint; const int inf = 0x3f3f3f3f; const int maxn = 0; int n; vector<pi> v; int main () { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> n; for(int i = 2; i <= sqrt(2 * n); ++i) { int d = i; if(2 * n % d == 0) { int m1 = d; int m2 = 2 * n / d; int f1 = (n * 2 / m1 - m1 + 1) / 2; int f2 = (n * 2 / m2 - m2 + 1) / 2; if(f1 > 0 and (n * 2 / m1 - m1 + 1) % 2 == 0) v.pb(mp(f1, f1 + m1 - 1)); if(f2 > 0 and (n * 2 / m2 - m2 + 1) % 2 == 0) v.pb(mp(f2, f2 + m2 - 1)); } } for(int i = 0; i < v.size(); ++i) cout << v[i].F << " " << v[i].S << endl; return 0; }

Compilation message (stderr)

uzastopni.cpp: In function 'int main()':
uzastopni.cpp:36:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i = 0; i < v.size(); ++i)
                 ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...