結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー kusagame12kusagame12
提出日時 2023-11-06 21:34:23
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 120 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 29,080 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-11-06 21:34:26
合計ジャッジ時間 893 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

implicit none
integer a
integer b
integer ans
character(len=10) str
read *, a, b, str
ans = a + b
print *, ans, str
end 
0