結果

問題 No.549 素材合成システム
ユーザー aimyaimy
提出日時 2017-07-28 22:43:12
言語 Haskell
(9.8.2)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 7,091 ms
コンパイル使用メモリ 178,048 KB
実行使用メモリ 35,584 KB
最終ジャッジ日時 2024-10-10 03:32:01
合計ジャッジ時間 12,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 219 ms
31,488 KB
testcase_08 AC 220 ms
31,488 KB
testcase_09 AC 208 ms
31,488 KB
testcase_10 AC 225 ms
31,232 KB
testcase_11 AC 220 ms
31,488 KB
testcase_12 AC 224 ms
31,488 KB
testcase_13 AC 214 ms
31,360 KB
testcase_14 AC 222 ms
31,360 KB
testcase_15 AC 225 ms
31,232 KB
testcase_16 AC 225 ms
31,360 KB
testcase_17 AC 132 ms
18,176 KB
testcase_18 AC 104 ms
16,128 KB
testcase_19 AC 124 ms
18,176 KB
testcase_20 AC 124 ms
17,152 KB
testcase_21 AC 198 ms
33,408 KB
testcase_22 AC 225 ms
32,896 KB
testcase_23 AC 222 ms
35,328 KB
testcase_24 AC 208 ms
29,312 KB
testcase_25 AC 180 ms
27,392 KB
testcase_26 AC 211 ms
30,720 KB
testcase_27 AC 187 ms
27,392 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 1 ms
6,816 KB
testcase_31 AC 131 ms
18,176 KB
testcase_32 AC 131 ms
18,176 KB
testcase_33 AC 131 ms
18,176 KB
testcase_34 AC 134 ms
18,048 KB
testcase_35 AC 224 ms
35,584 KB
testcase_36 AC 135 ms
18,048 KB
testcase_37 AC 133 ms
18,176 KB
testcase_38 AC 2 ms
6,820 KB
testcase_39 AC 1 ms
6,816 KB
testcase_40 AC 117 ms
20,224 KB
testcase_41 AC 57 ms
14,208 KB
testcase_42 AC 8 ms
8,192 KB
testcase_43 AC 49 ms
11,904 KB
testcase_44 AC 18 ms
8,960 KB
testcase_45 AC 58 ms
13,056 KB
testcase_46 AC 37 ms
10,752 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 = do
  getLine
  xs <- map read . words <$> getLine
  print (gousei xs)

gousei xs = xmax + sum (map (`div` 2) xs1)
  where
   xmax = maximum xs
   xs1 = delete xmax xs
0