結果

問題 No.5 数字のブロック
ユーザー Common LispCommon Lisp
提出日時 2024-10-06 01:38:10
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 1,702 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 33,356 KB
実行使用メモリ 32,396 KB
最終ジャッジ日時 2024-10-06 01:38:12
合計ジャッジ時間 1,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 OCT 2024 01:38:10 AM):

; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.006

ソースコード

diff #

; 幅のリストWiを昇べきsortをして
; ブロックの幅Wiを順に足していく
; 箱の幅 L を超えたときの値を出力(0-indexedなので)
(defun main ()
  (let* ((l (read))
         (n (read))
         (ws (sort
                (loop
                  ; repeat キーワードは loop マクロの中で
                  ; 指定回数だけループを行うために使う
                  repeat n
                  ; collect キーワードは loop マクロの中で
                  ; 要素を収集してリストを作成するために使う
                  collect (read))
                ; sort関数は比較関数を設定することで
                ; 昇べきの順に並べることができる
                #'<)))
    (loop
          ; below キーワードは loop マクロの中で
          ; 特定の値未満までの範囲を指定するために使う
          for i below n
          ; in キーワードは loop マクロの中で
          ; リストやコレクションを走査するときに使う
          for w in ws
          ; sum キーワードは項目を合計するために使う
          ; into キーワードは loop マクロの中で
          ; 結果を特定のコレクションに集めるために使う
          sum w into total
          ; until キーワードは loop マクロの中で
          ; 特定の条件が満たされるまでループするために使う
          until (> total l)
          ; finally キーワードは loop マクロの中で
          ; ループが終了した後に実行したい処理を指定するために使う
          finally
            (print i))))
(main)
0