結果

問題 No.482 あなたの名は
ユーザー mastersatoshimastersatoshi
提出日時 2017-06-22 10:29:49
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 29,124 KB
最終ジャッジ日時 2024-10-02 10:10:54
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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
    for i in range(n):
        tmpd = d[j]
        if tmpd - 1 != j:
            tmpe = d[tmpd - 1]
            d[tmpd - 1] = tmpd
            d[j] = tmpe
            
            count += 1
        else:
            j += 1
    
    while k > count:
        count += 2
        
    if k == count:
        print "YES"
    else:
        print "NO"
        
        
if __name__ == '__main__':
    main()
0