結果

問題 No.549 素材合成システム
ユーザー momen999momen999
提出日時 2019-04-13 16:04:36
言語 Haskell
(9.8.2)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 5,002 ms
コンパイル使用メモリ 175,616 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-09-15 11:09:16
合計ジャッジ時間 12,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 210 ms
31,360 KB
testcase_08 AC 202 ms
31,232 KB
testcase_09 AC 202 ms
31,232 KB
testcase_10 AC 200 ms
31,232 KB
testcase_11 AC 205 ms
31,232 KB
testcase_12 AC 209 ms
31,360 KB
testcase_13 AC 195 ms
31,232 KB
testcase_14 AC 196 ms
31,232 KB
testcase_15 AC 206 ms
31,360 KB
testcase_16 AC 204 ms
31,360 KB
testcase_17 AC 121 ms
18,048 KB
testcase_18 AC 99 ms
15,872 KB
testcase_19 AC 117 ms
17,920 KB
testcase_20 AC 108 ms
16,896 KB
testcase_21 AC 191 ms
33,280 KB
testcase_22 AC 202 ms
32,640 KB
testcase_23 AC 208 ms
35,328 KB
testcase_24 AC 178 ms
29,184 KB
testcase_25 AC 167 ms
26,624 KB
testcase_26 AC 202 ms
30,720 KB
testcase_27 AC 174 ms
27,392 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 121 ms
17,920 KB
testcase_32 AC 122 ms
17,920 KB
testcase_33 AC 124 ms
18,048 KB
testcase_34 AC 120 ms
17,920 KB
testcase_35 AC 211 ms
35,456 KB
testcase_36 AC 120 ms
17,920 KB
testcase_37 AC 121 ms
18,048 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 110 ms
19,968 KB
testcase_41 AC 53 ms
14,080 KB
testcase_42 AC 7 ms
8,064 KB
testcase_43 AC 44 ms
11,264 KB
testcase_44 AC 16 ms
8,960 KB
testcase_45 AC 52 ms
11,776 KB
testcase_46 AC 32 ms
10,240 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 (delete)

solve :: [Int] -> Int
solve xs = mx + (sum . map (flip div 2)) xs' where
    mx = maximum xs
    xs' = delete mx xs

main = do
    getLine
    xs <- map read . words <$> getLine
    print $ solve xs
0