結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,408 KB
testcase_01 AC 27 ms
17,408 KB
testcase_02 RE -
testcase_03 AC 46 ms
19,072 KB
testcase_04 AC 35 ms
17,792 KB
testcase_05 AC 46 ms
19,456 KB
testcase_06 AC 39 ms
17,920 KB
testcase_07 AC 36 ms
18,048 KB
testcase_08 AC 44 ms
18,816 KB
testcase_09 AC 33 ms
18,048 KB
testcase_10 AC 45 ms
19,584 KB
testcase_11 AC 36 ms
17,792 KB
testcase_12 AC 45 ms
19,072 KB
testcase_13 AC 50 ms
19,456 KB
testcase_14 AC 25 ms
17,664 KB
testcase_15 AC 25 ms
17,664 KB
testcase_16 AC 46 ms
19,712 KB
testcase_17 AC 47 ms
19,712 KB
testcase_18 AC 48 ms
19,712 KB
testcase_19 AC 48 ms
19,840 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 26 ms
17,408 KB
testcase_24 AC 26 ms
17,536 KB
testcase_25 AC 28 ms
17,664 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 35 ms
17,792 KB
testcase_30 AC 36 ms
17,792 KB
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