結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,536 KB
testcase_01 AC 39 ms
53,180 KB
testcase_02 AC 39 ms
52,432 KB
testcase_03 AC 39 ms
53,016 KB
testcase_04 AC 37 ms
51,752 KB
testcase_05 AC 38 ms
52,376 KB
testcase_06 AC 40 ms
52,452 KB
testcase_07 AC 40 ms
54,428 KB
testcase_08 AC 39 ms
53,020 KB
testcase_09 AC 39 ms
53,696 KB
testcase_10 AC 39 ms
52,276 KB
testcase_11 AC 40 ms
53,268 KB
testcase_12 AC 40 ms
52,700 KB
testcase_13 AC 39 ms
53,100 KB
testcase_14 AC 39 ms
53,084 KB
testcase_15 AC 89 ms
105,376 KB
testcase_16 AC 92 ms
105,508 KB
testcase_17 AC 89 ms
105,684 KB
testcase_18 AC 89 ms
104,664 KB
testcase_19 AC 89 ms
106,696 KB
testcase_20 AC 90 ms
105,496 KB
testcase_21 AC 89 ms
104,912 KB
testcase_22 AC 90 ms
104,660 KB
testcase_23 AC 88 ms
105,976 KB
testcase_24 AC 90 ms
106,104 KB
testcase_25 AC 89 ms
105,340 KB
testcase_26 AC 90 ms
105,824 KB
testcase_27 AC 90 ms
105,484 KB
testcase_28 AC 90 ms
105,480 KB
testcase_29 AC 91 ms
105,580 KB
testcase_30 AC 38 ms
52,564 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