結果

問題 No.609 Noelちゃんと星々
ユーザー pekempeypekempey
提出日時 2017-12-09 03:24:47
言語 Haskell
(9.8.2)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 5,884 ms
コンパイル使用メモリ 175,484 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-05-07 08:46:17
合計ジャッジ時間 19,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
91,776 KB
testcase_01 AC 230 ms
49,664 KB
testcase_02 AC 159 ms
40,576 KB
testcase_03 AC 252 ms
46,848 KB
testcase_04 AC 99 ms
28,160 KB
testcase_05 AC 597 ms
98,048 KB
testcase_06 AC 542 ms
92,800 KB
testcase_07 AC 292 ms
55,040 KB
testcase_08 AC 66 ms
16,640 KB
testcase_09 AC 185 ms
42,624 KB
testcase_10 AC 387 ms
81,536 KB
testcase_11 AC 338 ms
59,264 KB
testcase_12 AC 465 ms
89,600 KB
testcase_13 AC 76 ms
24,192 KB
testcase_14 AC 28 ms
13,056 KB
testcase_15 AC 562 ms
93,824 KB
testcase_16 AC 625 ms
100,992 KB
testcase_17 AC 499 ms
92,800 KB
testcase_18 AC 153 ms
38,784 KB
testcase_19 AC 528 ms
92,800 KB
testcase_20 AC 636 ms
101,888 KB
testcase_21 AC 642 ms
102,144 KB
testcase_22 AC 648 ms
102,016 KB
testcase_23 AC 636 ms
102,016 KB
testcase_24 AC 629 ms
102,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.List

main = getLine >> getLine >>= print . solve . map read . words

solve :: [Int] -> Int
solve a = let n = length a; m = (sort a) !! (div n 2) in sum . map abs . map (subtract m) $ a
0