結果

問題 No.482 あなたの名は
ユーザー くれちーくれちー
提出日時 2017-02-10 23:18:46
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 8,635 ms
コンパイル使用メモリ 174,592 KB
実行使用メモリ 72,860 KB
最終ジャッジ日時 2024-06-09 04:31:17
合計ジャッジ時間 12,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 6 ms
6,656 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 6 ms
6,656 KB
testcase_11 AC 9 ms
7,552 KB
testcase_12 AC 11 ms
8,064 KB
testcase_13 WA -
testcase_14 AC 6 ms
6,272 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
import Control.Applicative

swap :: (a, b) -> (b, a)
swap (x, y) = (y, x)

eq :: Eq a => (a, a) -> (a, a) -> Bool
eq x y = x == y || swap x == y

solve :: Integral a => a -> a -> [a] -> String
solve n k ds
    | t2 < 0          = "NO"
    | t2 `mod` 2 == 0 = "YES"
    | otherwise       = "NO"
    where
        t1 = length $ filter (\(x, y) -> x /= y) $ nubBy eq $ zip ds [1..]
        t2 = k - fromIntegral t1

main = do
    [n, k] <- map read . words <$> getLine
    ds <- map read . words <$> getLine
    putStrLn $ solve n k ds
0