結果

問題 No.5 数字のブロック
ユーザー go_boardwalkgo_boardwalk
提出日時 2017-03-31 15:20:15
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 26 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-07-07 04:41:56
合計ジャッジ時間 2,249 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,408 KB
testcase_01 AC 24 ms
17,536 KB
testcase_02 WA -
testcase_03 AC 43 ms
19,072 KB
testcase_04 AC 34 ms
17,664 KB
testcase_05 WA -
testcase_06 AC 36 ms
17,792 KB
testcase_07 AC 35 ms
17,920 KB
testcase_08 AC 42 ms
18,816 KB
testcase_09 AC 35 ms
17,792 KB
testcase_10 AC 44 ms
19,712 KB
testcase_11 AC 35 ms
17,792 KB
testcase_12 AC 43 ms
19,072 KB
testcase_13 AC 45 ms
19,584 KB
testcase_14 AC 24 ms
17,536 KB
testcase_15 WA -
testcase_16 AC 43 ms
19,456 KB
testcase_17 AC 46 ms
19,840 KB
testcase_18 AC 45 ms
19,584 KB
testcase_19 AC 47 ms
19,840 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 23 ms
17,408 KB
testcase_24 AC 24 ms
17,664 KB
testcase_25 AC 25 ms
17,920 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

(define l (string->number (read-line))) ;箱の幅
(define n (string->number (read-line)));ブロックの数
(define w (sort (map string->number (string-split (read-line) " "))))

(print (let loop ((b (car w)) (lst (cdr w)) (h l) (cnt 0))
         (if (>= b h)
              cnt
             (loop #?=(+ b (car lst)) (cdr lst) h (+ cnt 1)))))
0