結果

問題 No.482 あなたの名は
ユーザー hanorverhanorver
提出日時 2017-03-03 22:07:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 182 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,624 KB
最終ジャッジ日時 2024-06-22 05:18:40
合計ジャッジ時間 5,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,824 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 32 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 29 ms
10,752 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:6: SyntaxWarning: invalid decimal literal
  else:print("NO"if b%2else"YES")

ソースコード

diff #

d=lambda:map(int,input().split());a,b=d();c=list(d())
for i in range(b):
 e=c.index(i+1);c[i],c[e]=c[e],c[i]
 if e!=i:b-=1
 if b==0:print("YES");break
else:print("NO"if b%2else"YES")
0