結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー mabupromabupro
提出日時 2022-12-12 10:53:17
言語 C
(gcc 12.3.0)
結果
RE  
実行時間 -
コード長 217 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 27,776 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 02:44:02
合計ジャッジ時間 814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
int main(void){
    int a,b,n;
    char str;
    scanf("%d",&a);
    scanf("%d",&b);
    printf("\n");
    scanf("%s",&str);
    n = a + b;
    printf("%d ",n);
    printf("%s",str);
    return 0;
}
0