結果

問題 No.482 あなたの名は
ユーザー けむけむけむけむ
提出日時 2021-09-12 15:22:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,072 KB
最終ジャッジ日時 2024-06-24 05:17:06
合計ジャッジ時間 4,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def yourname(N, K, D):
    j = 0
    for i in range(N):
        d = D[j]
        if d == j + 1:
            j += 1
            if j > N - 1:
                break
            continue
        else:
            D[j], D[d - 1] = D[d - 1], D[j]
            K -= 1

    if K >= 0:
        if K % 2 == 0:
            return 'YES'
        else:
            return 'NO'
    else:
        return 'NO'

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

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