結果

問題 No.46 はじめのn歩
ユーザー RinRin
提出日時 2015-08-23 18:12:04
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 203 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 5,336 KB
実行使用メモリ 16,316 KB
最終ジャッジ日時 2023-09-25 16:34:16
合計ジャッジ時間 6,942 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,608 KB
testcase_01 AC 19 ms
11,616 KB
testcase_02 AC 19 ms
11,848 KB
testcase_03 AC 19 ms
11,616 KB
testcase_04 AC 18 ms
11,720 KB
testcase_05 AC 18 ms
11,716 KB
testcase_06 AC 18 ms
11,688 KB
testcase_07 AC 18 ms
11,852 KB
testcase_08 TLE -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

(let (
       (OneStep (read (current-input-port)))
       (Goal        (read (current-input-port)))
       )
 (let loop(( i 1))
 (if (>= (* OneStep i) Goal)
     (display i)

     (loop(+ i 1))
 )
 )
 )
0