結果

問題 No.482 あなたの名は
ユーザー hanorverhanorver
提出日時 2017-03-03 22:34:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 30,016 KB
最終ジャッジ日時 2023-09-04 06:29:59
合計ジャッジ時間 4,319 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,788 KB
testcase_01 AC 16 ms
7,784 KB
testcase_02 AC 16 ms
7,824 KB
testcase_03 AC 16 ms
7,824 KB
testcase_04 AC 16 ms
7,788 KB
testcase_05 AC 16 ms
7,812 KB
testcase_06 AC 17 ms
7,816 KB
testcase_07 AC 18 ms
7,936 KB
testcase_08 AC 17 ms
7,960 KB
testcase_09 AC 17 ms
7,884 KB
testcase_10 AC 17 ms
7,820 KB
testcase_11 AC 17 ms
7,828 KB
testcase_12 AC 17 ms
7,892 KB
testcase_13 AC 17 ms
7,944 KB
testcase_14 AC 16 ms
7,788 KB
testcase_15 AC 155 ms
29,956 KB
testcase_16 AC 153 ms
29,904 KB
testcase_17 AC 153 ms
29,904 KB
testcase_18 AC 155 ms
29,980 KB
testcase_19 AC 160 ms
29,860 KB
testcase_20 AC 157 ms
29,804 KB
testcase_21 AC 156 ms
30,016 KB
testcase_22 AC 157 ms
29,912 KB
testcase_23 AC 155 ms
29,808 KB
testcase_24 AC 160 ms
29,880 KB
testcase_25 AC 158 ms
29,928 KB
testcase_26 AC 155 ms
29,836 KB
testcase_27 AC 157 ms
29,972 KB
testcase_28 AC 160 ms
29,972 KB
testcase_29 AC 156 ms
29,880 KB
testcase_30 AC 16 ms
7,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:4: SyntaxWarning: invalid decimal literal
  else:print("NO"if b%2or b<0else"YES")
Main.py:4: SyntaxWarning: invalid decimal literal
  else:print("NO"if b%2or b<0else"YES")

ソースコード

diff #

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