結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー tsubakuro582tsubakuro582
提出日時 2020-01-30 11:05:57
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 170 bytes
コンパイル時間 1,114 ms
コンパイル使用メモリ 25,692 KB
実行使用メモリ 4,352 KB
最終ジャッジ日時 2023-10-14 08:20:58
合計ジャッジ時間 1,079 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0