結果
| 問題 |
No.8040 A + B Problem
|
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2019-04-01 21:13:56 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 204 bytes |
| コンパイル時間 | 1,706 ms |
| コンパイル使用メモリ | 164,624 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-26 10:23:52 |
| 合計ジャッジ時間 | 3,006 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
const int INF=1e9,MOD=1e9+7;
const long long LINF=1e18;
using namespace std;
#define int long long
//template
//main
signed main(){
int A,B;cin>>A>>B;
cout<<"A + B"<<endl;
}
cureskol