# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
711627 | minipig | ACM (COCI19_acm) | C++14 | 2 ms | 340 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
struct score{
int AC=0,penalty=0;
string name;
const bool operator <(score team2) const{
if(AC!=team2.AC){
return AC<team2.AC;
}
if(penalty!=team2.penalty){
return penalty>team2.penalty;
}
return name<team2.name;
}
} score1;
set<score> set1;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n,m;
cin>>n>>m;
for(int i=0;i<=n;i++){
string team_name;
cin>>team_name;
int temp_AC=0,temp_penalty=0;
for(int j=0;j<m;j++){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |