結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,912 KB
testcase_01 AC 15 ms
7,800 KB
testcase_02 AC 16 ms
8,008 KB
testcase_03 AC 16 ms
7,928 KB
testcase_04 AC 15 ms
7,824 KB
testcase_05 AC 16 ms
7,892 KB
testcase_06 AC 16 ms
7,800 KB
testcase_07 AC 16 ms
7,804 KB
testcase_08 AC 16 ms
7,888 KB
testcase_09 AC 16 ms
7,976 KB
testcase_10 AC 16 ms
7,964 KB
testcase_11 AC 16 ms
7,912 KB
testcase_12 AC 17 ms
7,904 KB
testcase_13 AC 16 ms
7,964 KB
testcase_14 AC 16 ms
7,844 KB
testcase_15 AC 153 ms
30,056 KB
testcase_16 AC 152 ms
29,956 KB
testcase_17 AC 155 ms
29,972 KB
testcase_18 AC 155 ms
29,928 KB
testcase_19 AC 155 ms
29,944 KB
testcase_20 AC 155 ms
30,004 KB
testcase_21 AC 155 ms
29,868 KB
testcase_22 AC 151 ms
29,888 KB
testcase_23 AC 153 ms
29,944 KB
testcase_24 AC 152 ms
30,044 KB
testcase_25 AC 148 ms
30,004 KB
testcase_26 AC 149 ms
29,884 KB
testcase_27 AC 150 ms
29,888 KB
testcase_28 AC 148 ms
29,952 KB
testcase_29 AC 158 ms
29,888 KB
testcase_30 AC 16 ms
7,912 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(len(c)):
 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