/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 1ms 764.0 KiB
#3 Wrong Answer 1ms 532.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);

    int t; cin >> t;
    for (int i = 1; i <= t; i++) {
        long long a,b; cin >> b >> a;
        cout << "Game #" << i << ": " << a << " / " << b << "\n";
    }
}

Information

Submit By
Type
Submission
Problem
P1001 C. Achievement-Unlocked
Language
C++17 (G++ 13.2.0)
Submit At
2025-07-14 18:09:11
Judged At
2025-07-14 18:09:11
Judged By
Score
0
Total Time
1ms
Peak Memory
764.0 KiB