結果

問題 No.482 あなたの名は
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-02-11 13:56:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,712 KB
最終ジャッジ日時 2024-06-09 08:14:07
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#!/usr/bin/env python3


def judge(n, k, ds):
    ps = [ds[i] for i in range(n)]
    c = 0
    for i in range(n):
        if ds[i] != i:
            j = ps[i]
            ds[i], ds[j] = ds[j], ds[i]
            ps[ds[i]] = i
            ps[ds[j]] = j
            c += 1
    return c <= k and (c + k) % 2 == 0


def main():
    n, k = (int(x) for x in input().split())
    ds = [int(x) - 1 for x in input().split()]
    print("YES" if judge(n, k, ds) else "NO")


if __name__ == '__main__':
    main()
0