結果

問題 No.2086 A+B問題
ユーザー coding master008
提出日時 2022-09-30 22:48:31
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 2,821 ms
コンパイル使用メモリ 241,200 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-23 00:32:25
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

/* 
Name: codingmaster008
Date-Time :30/09/2022 07:16:42 PM
*/

//#include<iostream>
#include<bits/stdc++.h>
using namespace std;
int main()
{
 ios_base::sync_with_stdio(false);
 cin.tie(0);
 cout.tie(0);
long long  a,b;
cin>>a>>b;
cout<<a+b;//"\n";
return 0;
}
0