結果

問題 No.482 あなたの名は
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-02-11 14:45:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,076 KB
最終ジャッジ日時 2024-06-09 08:18:55
合計ジャッジ時間 5,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 232 ms
40,724 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 227 ms
40,976 KB
testcase_19 AC 243 ms
40,852 KB
testcase_20 AC 222 ms
40,976 KB
testcase_21 AC 228 ms
40,788 KB
testcase_22 AC 245 ms
40,852 KB
testcase_23 AC 221 ms
40,980 KB
testcase_24 AC 225 ms
40,848 KB
testcase_25 AC 241 ms
40,856 KB
testcase_26 WA -
testcase_27 AC 228 ms
40,860 KB
testcase_28 WA -
testcase_29 AC 217 ms
40,976 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

if __name__ == '__main__':
    n, k = map(int, input().split())
    numbers = [int(token) - 1 for token in input().split()]
    position = { number : idx for idx, number in enumerate(numbers)}

    cnt = 0
    for idx in range(len(numbers)):
        if numbers[idx] == idx: continue
        numbers[idx], numbers[position[idx]] = numbers[position[idx]], numbers[idx]
        cnt += 1
    
    print("YES" if cnt <= k and (k - cnt) % 2 == 0 else "NO")
0