結果

問題 No.1305 Speak of the Devil
ユーザー zer0-star
提出日時 2020-12-02 01:53:12
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 88 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 28,928 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 03:39:41
合計ジャッジ時間 2,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  integer(4) a, b
  read *, a, b
  print "(I0)", min(a, b)
end program main
0