結果
| 問題 |
No.9001 標準入出力の練習問題(テスト用)
|
| ユーザー |
|
| 提出日時 | 2019-03-16 12:02:26 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 26,880 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-01 22:26:17 |
| 合計ジャッジ時間 | 637 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 2 |
ソースコード
#include <stdio.h>
int main() {
int A=0,B=0;
char S[10];
int N=0;
scanf("%d", &A);
scanf("%d", &B);
scanf("%s", S);
N = A+B;
printf("%d", N);
printf("%s", S);
return 0;
}