結果
問題 | No.90 品物の並び替え |
ユーザー | はむ吉🐹 |
提出日時 | 2015-10-26 22:26:36 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 3,202 ms / 5,000 ms |
コード長 | 439 bytes |
コンパイル時間 | 11,740 ms |
コンパイル使用メモリ | 173,004 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-07-23 19:07:16 |
合計ジャッジ時間 | 9,484 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 211 ms
8,960 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 16 ms
7,808 KB |
testcase_04 | AC | 25 ms
7,936 KB |
testcase_05 | AC | 243 ms
8,832 KB |
testcase_06 | AC | 165 ms
8,960 KB |
testcase_07 | AC | 6 ms
7,936 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 3,202 ms
8,832 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
ソースコード
import Data.List (permutations, elemIndex) import Control.Applicative ((<$>)) judge :: [Int] -> [Int] -> Int judge is (i1 : i2 : s : _) | elemIndex i1 is < elemIndex i2 is = s | otherwise = 0 main :: IO () main = do [n, _] <- map read . words <$> getLine ts <- map (map read) . map words . lines <$> getContents print $ maximum $ map (\p -> sum $ map (judge p) ts) $ permutations [0 .. n - 1]