/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 2ms 1.766 MiB
#2 Wrong Answer 4ms 532.0 KiB

Code

#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long
#define vl vector<ll>
#define vi vector<int>
#define vc vector<char>
#define bug(a) cout << #a << " : " << a << endl;
#define bug2(a, b) cout << #a << " : " << a << "   " << #b << " : " << b << endl;

void solve() {
    int a,b; cin >> a >> b;
cout << a-b;
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    // solve();
    int t; cin >> t;
    int tc=0;
    while(t--) {
        // cout << "Case " << ++tc << ":";
        solve();
        cout << endl;
    }
}

Information

Submit By
Type
Submission
Problem
P1226 Event Registration
Language
C++17 (G++ 13.2.0)
Submit At
2026-01-06 09:43:23
Judged At
2026-01-06 09:43:23
Judged By
Score
0
Total Time
4ms
Peak Memory
1.766 MiB