結果

問題 No.46 はじめのn歩
ユーザー Rin
提出日時 2015-08-23 18:21:50
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 25 ms / 5,000 ms
コード長 169 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-07-18 13:02:21
合計ジャッジ時間 832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

(let (
       (OneStep (read (current-input-port)))
       (Goal        (read (current-input-port)))
       )
    (display (inexact->exact (ceiling (/ Goal OneStep))))
)
0