結果

問題 No.5 数字のブロック
ユーザー RinRin
提出日時 2015-09-05 21:47:09
言語 Scheme
(Gauche-0.9.14)
結果
RE  
実行時間 -
コード長 637 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-07-19 04:14:43
合計ジャッジ時間 2,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,000 KB
testcase_01 AC 24 ms
16,000 KB
testcase_02 RE -
testcase_03 AC 50 ms
17,280 KB
testcase_04 AC 46 ms
17,024 KB
testcase_05 AC 53 ms
17,664 KB
testcase_06 AC 46 ms
17,152 KB
testcase_07 AC 43 ms
17,280 KB
testcase_08 AC 49 ms
17,024 KB
testcase_09 AC 30 ms
16,640 KB
testcase_10 AC 55 ms
17,792 KB
testcase_11 AC 43 ms
17,152 KB
testcase_12 AC 49 ms
17,408 KB
testcase_13 AC 53 ms
17,536 KB
testcase_14 AC 24 ms
15,872 KB
testcase_15 AC 25 ms
16,000 KB
testcase_16 AC 53 ms
17,792 KB
testcase_17 AC 58 ms
18,176 KB
testcase_18 AC 55 ms
17,920 KB
testcase_19 AC 61 ms
18,688 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 24 ms
15,872 KB
testcase_24 AC 26 ms
16,000 KB
testcase_25 AC 26 ms
16,128 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 45 ms
17,280 KB
testcase_30 AC 30 ms
16,768 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (System.out.println x)
  (begin
    (display x)
    (newline)
  )
)

(let (
      (Capacity (read))
      (N (read))
     )
  (let loop(
            (ls '())
            (foo (read))
           )
    (if (eof-object? foo)
        (let loop2(
                   (RemainingCapacity Capacity)
                   (UsedBlocks 0)
                   (bar (sort ls <))
                  )
          (if (< (- RemainingCapacity (car bar)) 0)
              (System.out.println UsedBlocks)
              (loop2 (- RemainingCapacity (car bar)) (+ UsedBlocks 1) (cdr bar))
          )
        )
        (loop (cons foo ls) (read))
    )
  )
)
0