結果

問題 No.482 あなたの名は
ユーザー GrayCoderGrayCoder
提出日時 2018-06-24 20:51:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,564 KB
最終ジャッジ日時 2024-06-30 22:34:56
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 130 ms
29,432 KB
testcase_16 AC 130 ms
29,440 KB
testcase_17 AC 129 ms
29,564 KB
testcase_18 AC 130 ms
29,436 KB
testcase_19 AC 136 ms
29,440 KB
testcase_20 AC 131 ms
29,440 KB
testcase_21 AC 130 ms
29,436 KB
testcase_22 AC 132 ms
29,436 KB
testcase_23 AC 131 ms
29,560 KB
testcase_24 AC 133 ms
29,436 KB
testcase_25 AC 138 ms
29,564 KB
testcase_26 AC 139 ms
29,520 KB
testcase_27 AC 136 ms
29,564 KB
testcase_28 AC 136 ms
29,432 KB
testcase_29 AC 124 ms
29,432 KB
testcase_30 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    N, K = map(int, input().split())
    D = list(map(int, input().split()))

    ope = 0
    d = [0] + D
    i = 1
    while 1:
        if d[i] != i:
            j = d[i]
            d[i], d[j] = d[j], d[i]
            ope += 1
        else:
            i += 1
            if i > N:
                break
        if ope > K:
            write('NO\n')
            return

    if K >= ope and K % 2 == ope % 2:
        write('YES\n')
    else:
        write('NO\n')

main()
0