結果

問題 No.482 あなたの名は
ユーザー k-matsk-mats
提出日時 2017-02-10 22:38:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,660 KB
最終ジャッジ日時 2024-12-28 07:46:25
合計ジャッジ時間 4,583 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 32 ms
10,496 KB
testcase_05 WA -
testcase_06 AC 31 ms
10,496 KB
testcase_07 WA -
testcase_08 AC 31 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 32 ms
10,496 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 WA -
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 157 ms
29,532 KB
testcase_16 AC 158 ms
29,404 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 161 ms
29,560 KB
testcase_20 WA -
testcase_21 AC 161 ms
29,280 KB
testcase_22 AC 157 ms
29,280 KB
testcase_23 AC 157 ms
29,276 KB
testcase_24 AC 153 ms
29,536 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 160 ms
29,532 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0
for i in range(len(d)):
    if d[i] != i + 1:
        cnt += 1

if cnt % 2 == 0 and k % 2 == 1:
    print('YES')
else:
    print('NO')
0