結果

問題 No.2014 Eggs Hatching
ユーザー keiden
提出日時 2024-09-15 15:10:41
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-09-15 15:10:43
合計ジャッジ時間 1,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

(define yuki2014
  (display
    (apply min
      (map string->number
        (string-split
          (read-line)
          #\space
        )
      )
    )
  )
)
0