ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#184613 | #1. A+B Problem | FHL | 100 | 0ms | 1256kb | C++ | 910b | 2023-09-06 12:57:34 | 2023-09-06 12:57:36 |
answer
#include<bits/stdc++.h>
using namespace std;
#define lowbit(x) ((x) & (-x))
#define yes "YES\n"
#define no "NO\n"
#define endl '\n'
#define sz size()
#define bg begin()
#define y1 y101
#define ff first
#define ss second
#define den(a) cout << #a << " = " << a << "\n";
#define deg(a) cout << #a << " = " << a << " ";
#define IOS ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define all(a) a.begin(),a.end()
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
ll gcd(ll a, ll b) {
return b ? gcd(b, a % b) : a;
}
const int N = 2e5 + 10, M = 2e5 + 10, mod = 1e9 + 7, inf = 0x3f3f3f3f;
ll n, m;
int a[N];
string s;
bool st[N];
map<int, ll> h;
void solve() {
cin>>n>>m;
cout<<n+m<<endl;
}
int main() {
int T = 1;
IOS;
//cin >> T;
while (T--) {
solve();
}
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 10
Accepted
time: 0ms
memory: 1252kb
input:
23 24
output:
47
result:
ok 1 number(s): "47"
Test #2:
score: 10
Accepted
time: 0ms
memory: 1256kb
input:
233 1
output:
234
result:
ok 1 number(s): "234"
Test #3:
score: 10
Accepted
time: 0ms
memory: 1252kb
input:
222 333
output:
555
result:
ok 1 number(s): "555"
Test #4:
score: 10
Accepted
time: 0ms
memory: 1256kb
input:
1 333
output:
334
result:
ok 1 number(s): "334"
Test #5:
score: 10
Accepted
time: 0ms
memory: 1256kb
input:
222 333
output:
555
result:
ok 1 number(s): "555"
Test #6:
score: 10
Accepted
time: 0ms
memory: 1252kb
input:
242 333
output:
575
result:
ok 1 number(s): "575"
Test #7:
score: 10
Accepted
time: 0ms
memory: 1256kb
input:
222 3330
output:
3552
result:
ok 1 number(s): "3552"
Test #8:
score: 10
Accepted
time: 0ms
memory: 1256kb
input:
2220 333
output:
2553
result:
ok 1 number(s): "2553"
Test #9:
score: 10
Accepted
time: 0ms
memory: 1256kb
input:
222 555
output:
777
result:
ok 1 number(s): "777"
Test #10:
score: 10
Accepted
time: 0ms
memory: 1252kb
input:
222 3333
output:
3555
result:
ok 1 number(s): "3555"
Extra Test:
score: 0
Extra Test Passed