結果
| 問題 |
No.9012 二数の足し算
|
| ユーザー |
k022c0052
|
| 提出日時 | 2024-05-10 15:19:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 166 bytes |
| コンパイル時間 | 473 ms |
| コンパイル使用メモリ | 61,580 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-20 03:54:27 |
| 合計ジャッジ時間 | 1,020 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 6 |
ソースコード
#include <iostream>
using namespace std;
int main() {
int a, b;
scanf("%d %d", &a, &b);
int total = a + b;
printf("%d\n", total);
return 0;
}
k022c0052