結果

問題 No.482 あなたの名は
ユーザー GrayCoderGrayCoder
提出日時 2018-06-24 20:24:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,428 KB
最終ジャッジ日時 2024-06-30 22:34:39
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 29 ms
10,624 KB
testcase_15 WA -
testcase_16 AC 107 ms
30,288 KB
testcase_17 AC 108 ms
30,288 KB
testcase_18 AC 108 ms
30,328 KB
testcase_19 WA -
testcase_20 AC 108 ms
30,412 KB
testcase_21 WA -
testcase_22 AC 109 ms
30,292 KB
testcase_23 WA -
testcase_24 AC 108 ms
30,284 KB
testcase_25 WA -
testcase_26 AC 109 ms
30,288 KB
testcase_27 WA -
testcase_28 AC 109 ms
30,288 KB
testcase_29 WA -
testcase_30 AC 30 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 = tuple(map(int, input().split()))

    diff = 0
    for i, d in enumerate(D, start=1):
        if i != d:
            diff += 1

    ope = max(0, diff - 1)
    if K >= ope and not (K - ope) % 2:
        write('YES\n')
    else:
        write('NO\n')

main()
0