提交记录 20589
提交时间 |
评测时间 |
2023-11-19 18:54:07 |
2023-11-19 18:54:10 |
#include <bits/stdc++.h>
using namespace std;
inline void write(int x){
if(x < 0){
putchar('-');
x = -x;
}
if(x > 9)
write(x / 10);
putchar(x % 10 + '0');
}
inline void read(int &x) {
x = 0;
short flag = 1;
char c = getchar();
while(c < '0' || c > '9'){
if(c == '-')flag = -1;
c = getchar();
}
while(c >= '0' && c <= '9') {
x = (x << 3) + (x << 1) + (c ^ 48);
c = getchar();
}
x *= flag;
}
int main(){
int a,b;
read(a),read(b);
write(a+b);
return 0;
}
Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
Testcase #1 | 37.79 us | 36 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2024-09-15 14:22:57 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用