結果

問題 No.482 あなたの名は
ユーザー mastersatoshimastersatoshi
提出日時 2017-06-22 10:35:16
言語 Python2
(2.7.18)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 23,756 KB
最終ジャッジ日時 2024-10-02 10:11:03
合計ジャッジ時間 3,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 9 ms
6,528 KB
testcase_02 AC 9 ms
6,528 KB
testcase_03 AC 9 ms
6,528 KB
testcase_04 AC 9 ms
6,528 KB
testcase_05 AC 10 ms
6,528 KB
testcase_06 AC 9 ms
6,528 KB
testcase_07 AC 9 ms
6,400 KB
testcase_08 AC 10 ms
6,528 KB
testcase_09 AC 10 ms
6,400 KB
testcase_10 AC 10 ms
6,400 KB
testcase_11 AC 10 ms
6,528 KB
testcase_12 AC 10 ms
6,400 KB
testcase_13 AC 10 ms
6,272 KB
testcase_14 AC 10 ms
6,400 KB
testcase_15 AC 130 ms
23,752 KB
testcase_16 AC 133 ms
23,752 KB
testcase_17 AC 132 ms
23,628 KB
testcase_18 AC 133 ms
23,752 KB
testcase_19 AC 127 ms
23,752 KB
testcase_20 AC 121 ms
23,756 KB
testcase_21 AC 121 ms
23,752 KB
testcase_22 AC 122 ms
23,752 KB
testcase_23 AC 122 ms
23,756 KB
testcase_24 AC 121 ms
23,752 KB
testcase_25 AC 122 ms
23,624 KB
testcase_26 AC 124 ms
23,628 KB
testcase_27 AC 136 ms
23,628 KB
testcase_28 AC 136 ms
23,756 KB
testcase_29 AC 131 ms
23,628 KB
testcase_30 AC 11 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#import pdb; pdb.set_trace()
import sys
import math

def main():
    
    (n, k) = map(int, raw_input().split())
    d = map(int, raw_input().split())
    
    count = 0
    j = 0
    while j < n:
        tmpd = d[j]
        if tmpd - 1 != j:
            tmpe = d[tmpd - 1]
            d[tmpd - 1] = tmpd
            d[j] = tmpe
            
            count += 1
        else:
            j += 1
    
    if k > count:
        if (k - count) % 2 == 0:
            print "YES"
        else:
            print "NO"
    elif k == count:
        print "YES"
    else:
        print "NO"
        
        
if __name__ == '__main__':
    main()
0