結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー yousuke tanabe
提出日時 2026-05-17 09:58:49
言語 Scheme
(Gauche-0.9.15)
コンパイル:
true
実行:
gosh _filename_
結果
RE  
実行時間 -
コード長 142 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 226 ms
コンパイル使用メモリ 6,656 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2026-05-17 09:58:57
合計ジャッジ時間 1,176 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

program main
  implicit none

  integer::a,b
  character(len=10)::s

  read *, a,b
  read *, s

  print '(I0,A,A)', a+b," ",s
end program main
0