結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 224 ms
40,952 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 221 ms
41,088 KB
testcase_19 AC 233 ms
40,864 KB
testcase_20 AC 226 ms
40,836 KB
testcase_21 AC 227 ms
40,808 KB
testcase_22 AC 239 ms
41,012 KB
testcase_23 AC 229 ms
40,948 KB
testcase_24 AC 232 ms
40,904 KB
testcase_25 AC 231 ms
40,916 KB
testcase_26 WA -
testcase_27 AC 233 ms
40,800 KB
testcase_28 WA -
testcase_29 AC 210 ms
40,796 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 % 2 == cnt % 2 else "NO")
0