結果
問題 |
No.46 はじめのn歩
|
ユーザー |
![]() |
提出日時 | 2015-08-23 18:12:04 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 203 bytes |
コンパイル時間 | 32 ms |
コンパイル使用メモリ | 6,940 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-07-18 13:02:18 |
合計ジャッジ時間 | 6,610 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 8 TLE * 1 -- * 1 |
ソースコード
(let ( (OneStep (read (current-input-port))) (Goal (read (current-input-port))) ) (let loop(( i 1)) (if (>= (* OneStep i) Goal) (display i) (loop(+ i 1)) ) ) )