結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー 亀井拓斗亀井拓斗
提出日時 2022-06-24 12:34:40
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 27,264 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-25 18:07:48
合計ジャッジ時間 554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
int main(void){
	
int a, b;
char d[11];

scanf("%d %d",&a,&b);
scanf("%s",d);
int sum;
sum = a + b;
printf("%d\n%c",sum,d);
return 0;
}
0