Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
int g;
cin>>g;
int achiv[100],unlocked[100];
for(int i=1; i<=g; i++){
cin>>achiv[i]>>unlocked[i];
}
for(int i=1; i<=g; i++){
cout<<"Game #"<<i<<": "<<unlocked[i]<<" / "<<achiv[i]<<endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1001 Achievement-Unlocked
- Contest
- Beta Round #1
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2023-11-29 16:49:43
- Judged At
- 2024-11-11 03:50:49
- Judged By
- Score
- 0
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB