Submission #328393

#TimeUsernameProblemLanguageResultExecution timeMemory
328393egasLightning Rod (NOI18_lightningrod)C++14
7 / 100
1610 ms262148 KiB
#include <bits/stdc++.h> using namespace std; int32_t main() { ios_base::sync_with_stdio(false); cin.tie(0); long long n; cin >> n; vector<pair<long long,long long> > v; for(long long i = 0 ; i < n ; i++) { long long x; cin >> x; long long y; cin >> y; v.push_back({x,y}); } if(n==2) { if(abs(v[1].second-v[0].second)>=abs(v[1].first-v[0].first)) { cout << 1 << '\n'; } else { cout << 2 << '\n'; } } else cout << n << '\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...