結果

問題 No.1088 A+B Problem
ユーザー たらこたらこ
提出日時 2021-02-23 22:00:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,335 bytes
コンパイル時間 4,142 ms
コンパイル使用メモリ 229,272 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-23 23:02:18
合計ジャッジ時間 5,417 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll = long long;
using ld = long double;
#define rep(i,n) for(ll i=0 ; i<(n) ; i++) //0からn-1までfor
#define rrep(i,n) for(ll i=1 ; i<=(n) ; i++) //1からnまでfor
#define vi(a,b) vector<int> a(b)
#define vll(a,b) vector<ll> a(b)
#define vd(a,b) vector<double> a(b)
#define vs(a,b) vector<string> a(b)
#define vc(a,b) vector<char> a(b)
#define ALL(v) v.begin(),v.end() //全部
#define rever(v); reverse(v.begin(), v.end()); //リバース
#define sor(v); sort(v.begin(), v.end()); //ソート
#define zip(v) sort(ALL(v)),v.erase(unique(ALL(v)),v.end()) //重複削除
#define MAX(v) *max_element(ALL(v)) //配列vの最大値
#define MIN(v) *min_element(ALL(v)) //配列vの最小値
#define coutY cout<<"YES"<<endl
#define couty cout<<"Yes"<<endl
#define coutN cout<<"NO"<<endl
#define coutn cout<<"No"<<endl
void YesNo(bool a){if(a){cout<<"Yes"<<endl;}else{cout<<"No"<<endl;}} //セミコロン忘れずに
void YESNO(bool a){if(a){cout<<"YES"<<endl;}else{cout<<"NO"<<endl;}} //セミコロン忘れずに
#define coutdouble(a,b) cout << fixed << setprecision(a) << double(b) <<endl //bを小数点以下a桁まで
#define mod 998244353
#define MOD 1000000007 //10^9+7

int main(){
  int a,b;
  cin>>a>>b;
  cout<<a+b<<endl;
}
0