結果

問題 No.609 Noelちゃんと星々
ユーザー ducktailducktail
提出日時 2017-12-18 23:11:15
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-12-16 00:54:03
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
22,912 KB
testcase_01 AC 93 ms
20,864 KB
testcase_02 AC 69 ms
20,352 KB
testcase_03 AC 88 ms
20,992 KB
testcase_04 AC 56 ms
18,560 KB
testcase_05 AC 186 ms
24,320 KB
testcase_06 AC 158 ms
23,680 KB
testcase_07 AC 106 ms
21,248 KB
testcase_08 AC 46 ms
17,408 KB
testcase_09 AC 84 ms
20,992 KB
testcase_10 AC 121 ms
23,040 KB
testcase_11 AC 116 ms
22,144 KB
testcase_12 AC 147 ms
24,320 KB
testcase_13 AC 50 ms
17,664 KB
testcase_14 AC 41 ms
17,280 KB
testcase_15 AC 161 ms
24,192 KB
testcase_16 AC 193 ms
24,448 KB
testcase_17 AC 154 ms
23,168 KB
testcase_18 AC 71 ms
20,352 KB
testcase_19 AC 159 ms
23,808 KB
testcase_20 AC 195 ms
24,704 KB
testcase_21 AC 195 ms
24,704 KB
testcase_22 AC 196 ms
24,704 KB
testcase_23 AC 194 ms
24,576 KB
testcase_24 AC 195 ms
24,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-1)

(define (main args)
  (let* ([n (read)]
         [ls (sort (list-tabulate n (lambda (_) (read))))]
         [v (list-ref ls (quotient n 2))])
    (print
     (apply + (map (lambda (x) (abs (- x v))) ls))))
  0)
0