Accepted
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define FASTIO ios_base::sync_with_stdio(false); cin.tie(NULL);
int main () {
FASTIO
int n, m;
cin>>n>>m;
ll s = 0;
for (ll i = 1; i < 1000000000; i++) {
s += i;
}
cout<<n - m;
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1226 Event Registration
- Contest
- Testing - Intra LU Programming contest 25
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2025-08-31 07:40:17
- Judged At
- 2025-08-31 07:40:17
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 532.0 KiB