/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 568.0 KiB
#3 Accepted 1ms 368.0 KiB
#4 Accepted 2ms 512.0 KiB
#5 Accepted 2ms 492.0 KiB
#6 Accepted 1ms 564.0 KiB
#7 Accepted 1ms 636.0 KiB
#8 Accepted 2ms 516.0 KiB
#9 Accepted 2ms 344.0 KiB
#10 Accepted 1ms 572.0 KiB

Code

#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
#define pb push_back
#define all(v) v.begin(),v.end()
#define endl '\n'
#define int long long
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL) 
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;

const int mxn = 1e6 + 123;
int a[mxn],b[mxn];
void solve(){
	int a,b;
	cin>>a>>b;
	cout<<a+b<<endl;
	
} 
signed main() {
    fastio;
    int t = 1;
    //cin >> t;
    while (t--) {
        solve();
    }
} 

Information

Submit By
Type
Submission
Problem
P1000 A + B
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 15:09:56
Judged At
2024-08-16 15:09:56
Judged By
Score
100
Total Time
2ms
Peak Memory
636.0 KiB