結果

問題 No.482 あなたの名は
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-02-11 14:45:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,108 KB
最終ジャッジ日時 2024-12-29 12:22:42
合計ジャッジ時間 6,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 34 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 35 ms
10,880 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 33 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 33 ms
10,752 KB
testcase_14 AC 34 ms
10,752 KB
testcase_15 AC 254 ms
40,980 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 255 ms
40,980 KB
testcase_19 AC 253 ms
40,924 KB
testcase_20 AC 259 ms
40,916 KB
testcase_21 AC 254 ms
41,036 KB
testcase_22 AC 250 ms
41,104 KB
testcase_23 AC 252 ms
40,936 KB
testcase_24 AC 255 ms
41,108 KB
testcase_25 AC 250 ms
40,992 KB
testcase_26 WA -
testcase_27 AC 255 ms
40,980 KB
testcase_28 WA -
testcase_29 AC 225 ms
40,920 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

if __name__ == '__main__':
    n, k = map(int, input().split())
    numbers = [int(token) - 1 for token in input().split()]
    position = { number : idx for idx, number in enumerate(numbers)}

    cnt = 0
    for idx in range(len(numbers)):
        if numbers[idx] == idx: continue
        numbers[idx], numbers[position[idx]] = numbers[position[idx]], numbers[idx]
        cnt += 1
    
    print("YES" if cnt <= k and (k - cnt) % 2 == 0 else "NO")
0