結果

問題 No.482 あなたの名は
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-05 05:03:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 105,892 KB
最終ジャッジ日時 2024-07-19 19:12:01
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 35 ms
52,348 KB
testcase_11 AC 36 ms
51,840 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 85 ms
104,960 KB
testcase_17 AC 85 ms
104,064 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 87 ms
104,448 KB
testcase_25 AC 87 ms
104,448 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 93 ms
105,216 KB
testcase_29 AC 86 ms
103,936 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

D = [d-1 for d in D]

c = 0
for i, d in enumerate(D):
    if i != d:
        c += 1
c //= 2
if k-c >= 0 and (k-c)%2 == 0:
    print('YES')
else:
    print('NO')
0