Submission #726795

# Submission time Handle Problem Language Result Execution time Memory
726795 2023-04-19T11:26:33 Z kerem ACM (COCI19_acm) C++14
0 / 50
3 ms 468 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

acm.cpp: In function 'int32_t main()':
acm.cpp:32:18: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, std::pair<long long int, std::__cxx11::basic_string<char> > > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |     for(int i=0;i<v.size();i++){
      |                 ~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 324 KB Output isn't correct
2 Incorrect 2 ms 456 KB Output isn't correct
3 Incorrect 1 ms 212 KB Output isn't correct
4 Incorrect 3 ms 468 KB Output isn't correct
5 Incorrect 2 ms 456 KB Output isn't correct