結果

問題 No.482 あなたの名は
ユーザー atuk721atuk721
提出日時 2017-02-17 05:35:27
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 7,429 ms
コンパイル使用メモリ 175,456 KB
実行使用メモリ 159,616 KB
最終ジャッジ日時 2024-06-09 20:42:38
合計ジャッジ時間 16,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 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 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 5 ms
7,424 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 4 ms
6,272 KB
testcase_11 AC 4 ms
6,912 KB
testcase_12 WA -
testcase_13 AC 4 ms
6,400 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 771 ms
159,616 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 794 ms
159,488 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 769 ms
159,360 KB
testcase_24 AC 771 ms
159,360 KB
testcase_25 AC 782 ms
159,360 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 780 ms
159,488 KB
testcase_29 AC 649 ms
148,224 KB
testcase_30 AC 2 ms
5,376 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 qualified Data.Array.IO as I

main :: IO ()
main = do
  [n, k] <- fmap (map read . words) $ getLine :: IO [Integer]
  ds <- fmap (map read . words) $ getLine :: IO [Integer]
  is <- I.newListArray (1, n) ds :: IO (I.IOArray Integer Integer)
  result <- sortCount n 1 0 is

  putStrLn $ if result > k || (odd result && even k) || (even result && odd k)
             then "NO"
             else "YES"

sortCount :: Integer -> Integer -> Integer -> I.IOArray Integer Integer -> IO (Integer)
sortCount n i c _
  | n + 1 == i = return c
sortCount n i c xs = do
  a1 <- I.readArray xs i
  if a1 == i
     then sortCount n (i + 1) c xs
     else do
      a2 <- I.readArray xs a1
      I.writeArray xs i a2
      I.writeArray xs a1 a1
      sortCount n (i + 1) (c + 1) xs
0