結果

問題 No.365 ジェンガソート
ユーザー ikdikd
提出日時 2019-08-05 10:08:42
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-07-18 13:07:40
合計ジャッジ時間 3,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
15,872 KB
testcase_01 AC 19 ms
16,000 KB
testcase_02 AC 18 ms
15,872 KB
testcase_03 AC 18 ms
16,000 KB
testcase_04 AC 18 ms
15,872 KB
testcase_05 AC 18 ms
16,000 KB
testcase_06 AC 20 ms
16,000 KB
testcase_07 AC 18 ms
15,872 KB
testcase_08 AC 19 ms
15,872 KB
testcase_09 AC 19 ms
15,872 KB
testcase_10 AC 18 ms
16,000 KB
testcase_11 AC 18 ms
15,872 KB
testcase_12 AC 18 ms
15,872 KB
testcase_13 AC 19 ms
15,872 KB
testcase_14 AC 18 ms
16,000 KB
testcase_15 AC 19 ms
16,000 KB
testcase_16 AC 73 ms
20,864 KB
testcase_17 AC 89 ms
20,736 KB
testcase_18 AC 24 ms
17,152 KB
testcase_19 AC 86 ms
20,864 KB
testcase_20 AC 41 ms
18,560 KB
testcase_21 AC 38 ms
17,536 KB
testcase_22 AC 73 ms
20,608 KB
testcase_23 AC 50 ms
20,352 KB
testcase_24 AC 74 ms
20,736 KB
testcase_25 AC 38 ms
17,280 KB
testcase_26 AC 62 ms
20,736 KB
testcase_27 AC 93 ms
20,736 KB
testcase_28 AC 65 ms
20,864 KB
testcase_29 AC 88 ms
20,736 KB
testcase_30 AC 66 ms
20,736 KB
testcase_31 AC 40 ms
17,920 KB
testcase_32 AC 39 ms
17,792 KB
testcase_33 AC 92 ms
20,736 KB
testcase_34 AC 34 ms
17,280 KB
testcase_35 AC 72 ms
20,736 KB
testcase_36 AC 88 ms
20,864 KB
testcase_37 AC 89 ms
20,736 KB
testcase_38 AC 92 ms
20,864 KB
testcase_39 AC 91 ms
20,736 KB
testcase_40 AC 95 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#! /usr/bin/env gosh

(let* ([n (read)]
      [a (let input ([i 0] [li (list)])
           (if (= i n)
             li
             (input (+ i 1) (cons (read) li))))])
  (let ([cost (let solve ([i 0] [li a] [tgt n] [res 0])
    (if (= i n)
      res
      (let* ([found (= (car li) tgt)])
        (solve (+ i 1)
               (cdr li)
               (- tgt (if found 1 0))
               (+ res (if found 0 1))))))])
    (display cost)))
0