結果

問題 No.482 あなたの名は
ユーザー k-matsk-mats
提出日時 2017-02-11 00:42:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,880 KB
最終ジャッジ日時 2024-06-09 07:56:52
合計ジャッジ時間 6,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 30 ms
10,624 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 296 ms
44,620 KB
testcase_17 AC 310 ms
44,752 KB
testcase_18 AC 306 ms
44,628 KB
testcase_19 WA -
testcase_20 AC 299 ms
44,496 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 316 ms
44,620 KB
testcase_27 AC 314 ms
44,876 KB
testcase_28 WA -
testcase_29 AC 283 ms
44,712 KB
testcase_30 AC 28 ms
10,624 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