結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
merom686
|
| 提出日時 | 2017-04-02 22:25:56 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| + 243µs | |
| コード長 | 258 bytes |
| 記録 | |
| コンパイル時間 | 330 ms |
| コンパイル使用メモリ | 83,032 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-11 23:18:37 |
| 合計ジャッジ時間 | 1,678 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <stdio.h>
#include <string.h>
using namespace std;
int main() {
int a, b;
string s;
cin >> a >> b >> s;
cout << a + b << ' ' << s << endl;
return 0;
}
merom686