結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
tsubakuro582
|
| 提出日時 | 2020-01-30 11:05:57 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 170 bytes |
| 記録 | |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 33,664 KB |
| 最終ジャッジ日時 | 2026-02-22 05:10:42 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 2 |
ソースコード
#include <stdio.h>
int main(void) {
int n;
int a, b;
char s[10];
scanf("%d%d", a, b);
scanf("%s", s);
printf("%d %s", a + b, s);
return 0;
}
tsubakuro582