提交记录 9942


用户 题目 状态 得分 用时 内存 语言 代码长度
Vareal 1000i. 【传统题】 A+B Problem Wrong Answer 0 41.87 us 36 KB C++ 625 B
提交时间 评测时间
2019-07-24 22:32:28 2020-08-01 01:59:07
#include <bits/stdc++.h>
#define mem(i,a) memset(i,a,sizeof(i))
#define PI acos(-1.0)
#define DMAX 200005     //数组大小
#define MOD 19260817     //模数
#define eps 1e-8
#define bl bool
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
template<class T> inline void read(T &f){
	f=0;
    T x=1;
    char ch=getchar();
    while(ch<48 || ch>57) {
        if(ch=='-') {
            x=-1;
        }
        ch=getchar();
    }
    while(ch<=57 && ch>=48) {
        f=f*10+ch-'0';
        ch=getchar();
    }
    f*=x;
}
int main(){
	ll a,b;
	read(a),read(b);
	cout<<a+b<<endl;
	return 0; 
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #141.87 us36 KBWrong AnswerScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-03-30 11:21:44 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠