結果

問題 No.482 あなたの名は
ユーザー k-matsk-mats
提出日時 2017-02-11 00:42:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,876 KB
最終ジャッジ日時 2024-12-29 11:34:02
合計ジャッジ時間 6,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 31 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 314 ms
44,740 KB
testcase_17 AC 324 ms
44,748 KB
testcase_18 AC 319 ms
44,752 KB
testcase_19 WA -
testcase_20 AC 317 ms
44,876 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 330 ms
44,748 KB
testcase_27 AC 320 ms
44,676 KB
testcase_28 WA -
testcase_29 AC 304 ms
44,876 KB
testcase_30 AC 34 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = [int(i) for i in input().split()]
d = [int(i) - 1 for i in input().split()]

e = [0 for i in range(n)]
for i, dd in enumerate(d):
    e[dd] = i

used_indices = set()
hoge = list()

for i in range(n):
    x = i
    y = 0

    if x not in used_indices:
        used_indices.add(x)
        x = e[x]
        y += 1
    if y > 0:
        hoge.append(y)

x = sum(a - 1 for a in hoge)

if x % 2 == k % 2 and x <= k:
    print('YES')
else:
    print('NO')
0