結果

問題 No.482 あなたの名は
ユーザー Meso MesoMeso Meso
提出日時 2024-12-04 20:16:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 288 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,548 KB
最終ジャッジ日時 2024-12-04 20:16:07
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 195 ms
29,420 KB
testcase_16 WA -
testcase_17 AC 189 ms
29,292 KB
testcase_18 WA -
testcase_19 AC 190 ms
29,416 KB
testcase_20 WA -
testcase_21 AC 186 ms
29,416 KB
testcase_22 AC 216 ms
29,420 KB
testcase_23 AC 192 ms
29,424 KB
testcase_24 AC 185 ms
29,420 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

D = list(map(int, input().split()))

a = []
for d in D:
    a.append(d-1)

cnt = 0
for i in range(k):
    while a[i] != i:
        t = a[i]
        a[i] = a[t]
        a[t] = t
        cnt += 1

if cnt % 2 == k % 2:
    print("YES")
else:
    print("NO")
0