# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
726804 | 2023-04-19T11:39:58 Z | kerem | ACM (COCI19_acm) | C++14 | 2 ms | 568 KB |
#include <bits/stdc++.h> using namespace std; #define int long long #define pb push_back #define fir first #define sec second #define fast ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); int32_t main(){ fast; int n,m; vector<pair<int,pair<int,string>>> v; cin >> n >> m; for(int i=0;i<=n;i++){ string s; int x=0,y=0; cin >> s; for(int j=0;j<m;j++){ string t; cin >> t; if(t=="-") continue; if(t[0]!='-'){ x++; y+=(s[1]-49)*2000; } if(t.size()>2) y+=(t[3]-48)*100000+(t[4]-48)*10000+(t[6]-48)*1000+(t[7]-48)*100+(t[9]-48)*10+(t[10]-48); } if(s!="NijeZivotJedanACM" or i==n) v.pb({-x,{y,s}}); } sort(v.begin(),v.end()); for(int i=0;i<v.size();i++){ if(v[i].sec.sec=="NijeZivotJedanACM"){ cout << i+1; return 0; } } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 212 KB | Output isn't correct |
2 | Incorrect | 2 ms | 460 KB | Output isn't correct |
3 | Incorrect | 1 ms | 212 KB | Output isn't correct |
4 | Incorrect | 2 ms | 468 KB | Output isn't correct |
5 | Incorrect | 2 ms | 568 KB | Output isn't correct |