結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
Kamutaro
|
| 提出日時 | 2019-06-02 15:54:13 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 215 bytes |
| 記録 | |
| コンパイル時間 | 405 ms |
| コンパイル使用メモリ | 70,508 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-06 10:49:52 |
| 合計ジャッジ時間 | 760 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 2 |
ソースコード
#include <iostream>
#include <string>
#include <stdio.h>
using namespace std;
int main(int argc, char* argv[]) {
int a, b;
string s;
cin >> a >> b;
getline(cin, s);
printf("%d %s", (a + b), s);
return 0;
}
Kamutaro