結果

問題 No.482 あなたの名は
ユーザー atuk721atuk721
提出日時 2017-02-17 05:49:49
言語 Haskell
(9.8.2)
結果
AC  
実行時間 912 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 2,428 ms
コンパイル使用メモリ 175,076 KB
実行使用メモリ 156,544 KB
最終ジャッジ日時 2024-06-09 20:43:13
合計ジャッジ時間 18,311 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 6 ms
8,064 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 5 ms
7,424 KB
testcase_12 AC 6 ms
8,064 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 885 ms
156,288 KB
testcase_16 AC 903 ms
156,416 KB
testcase_17 AC 883 ms
156,416 KB
testcase_18 AC 877 ms
156,416 KB
testcase_19 AC 873 ms
156,288 KB
testcase_20 AC 884 ms
156,416 KB
testcase_21 AC 891 ms
156,544 KB
testcase_22 AC 893 ms
156,416 KB
testcase_23 AC 897 ms
156,544 KB
testcase_24 AC 912 ms
156,288 KB
testcase_25 AC 895 ms
156,544 KB
testcase_26 AC 881 ms
156,288 KB
testcase_27 AC 895 ms
156,288 KB
testcase_28 AC 896 ms
156,416 KB
testcase_29 AC 813 ms
147,328 KB
testcase_30 AC 2 ms
6,944 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 (c + 1) xs
0