結果

問題 No.482 あなたの名は
ユーザー mlihua09mlihua09
提出日時 2020-09-04 14:10:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 106,220 KB
最終ジャッジ日時 2024-05-04 03:12:52
合計ジャッジ時間 4,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,408 KB
testcase_01 AC 39 ms
53,080 KB
testcase_02 AC 38 ms
52,544 KB
testcase_03 AC 37 ms
53,304 KB
testcase_04 AC 42 ms
52,308 KB
testcase_05 AC 38 ms
52,676 KB
testcase_06 AC 37 ms
53,016 KB
testcase_07 AC 38 ms
52,820 KB
testcase_08 AC 37 ms
52,468 KB
testcase_09 AC 38 ms
52,132 KB
testcase_10 AC 38 ms
52,968 KB
testcase_11 AC 39 ms
53,140 KB
testcase_12 AC 38 ms
53,108 KB
testcase_13 AC 37 ms
52,616 KB
testcase_14 AC 38 ms
53,384 KB
testcase_15 AC 90 ms
106,220 KB
testcase_16 AC 89 ms
105,308 KB
testcase_17 AC 91 ms
105,556 KB
testcase_18 AC 89 ms
105,480 KB
testcase_19 AC 91 ms
105,408 KB
testcase_20 AC 89 ms
104,908 KB
testcase_21 AC 91 ms
105,968 KB
testcase_22 AC 90 ms
105,336 KB
testcase_23 AC 90 ms
105,460 KB
testcase_24 AC 91 ms
105,704 KB
testcase_25 AC 92 ms
104,980 KB
testcase_26 AC 90 ms
105,276 KB
testcase_27 AC 91 ms
106,168 KB
testcase_28 AC 92 ms
105,672 KB
testcase_29 AC 89 ms
105,872 KB
testcase_30 AC 38 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, K = map(int, input().split())

D = list(map(lambda x: int(x) - 1, input().split()))

I = [0] * N

ans = 0
for i in range(N):
    I[D[i]] = i
    
for i in range(N):
    
    if D[i] != i:
        D[I[i]] = D[i]
        I[D[i]] = I[i]
        ans += 1
if ans <= K and (K - ans) % 2 == 0:
    print('YES')
else:
    print('NO')
0