結果

問題 No.90 品物の並び替え
ユーザー trineutrontrineutron
提出日時 2019-05-10 15:19:45
言語 Haskell
(9.8.2)
結果
AC  
実行時間 1,699 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 8,301 ms
コンパイル使用メモリ 174,088 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-02 01:00:04
合計ジャッジ時間 7,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 114 ms
7,808 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 11 ms
6,912 KB
testcase_04 AC 16 ms
6,912 KB
testcase_05 AC 130 ms
7,808 KB
testcase_06 AC 85 ms
7,936 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1,699 ms
10,880 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
    [n, m] <- map read . words <$> getLine
    xs <- map (map read . words) . lines <$> getContents
    print . maximum . map (getScore xs) $ permutations [0..n-1]

getScore xs ys = sum . map last $ filter (\i -> (ys !! (i !! 0)) > (ys !! (i !! 1))) xs
0