結果

問題 No.388 階段 (1)
ユーザー φλμφλμ
提出日時 2018-05-29 20:30:00
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-30 08:03:29
合計ジャッジ時間 1,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,872 KB
testcase_01 AC 23 ms
16,000 KB
testcase_02 AC 23 ms
15,872 KB
testcase_03 AC 24 ms
16,000 KB
testcase_04 AC 23 ms
16,000 KB
testcase_05 AC 23 ms
15,872 KB
testcase_06 AC 24 ms
16,000 KB
testcase_07 AC 24 ms
16,000 KB
testcase_08 AC 24 ms
15,872 KB
testcase_09 AC 24 ms
15,872 KB
testcase_10 AC 23 ms
15,872 KB
testcase_11 AC 23 ms
16,000 KB
testcase_12 AC 23 ms
15,872 KB
testcase_13 AC 24 ms
16,000 KB
testcase_14 AC 24 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

;;; no.388 階段(1)
;;;
;;; Fが整数という条件なので、一階層分の高さは階段1段の高さで割り切れるようです。
;;; S=0〜(F-1) -> 1階、S=F〜(2F-1) -> 2階、、、、、

(define steps_1
  (lambda ()
    (let ((S (read)) (F (read))
          )

      (let loop ((flr 1) (nF F))
        (cond ((< S nF)
               (print flr)
               )
              ((>= S nF)
               (loop (+ 1 flr) (+ nF F)))))
      )))

(steps_1)
0