結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,872 KB
testcase_01 AC 17 ms
7,900 KB
testcase_02 AC 16 ms
7,860 KB
testcase_03 AC 17 ms
7,824 KB
testcase_04 AC 16 ms
7,940 KB
testcase_05 AC 16 ms
7,924 KB
testcase_06 AC 16 ms
7,936 KB
testcase_07 AC 16 ms
7,960 KB
testcase_08 AC 16 ms
7,964 KB
testcase_09 AC 17 ms
7,864 KB
testcase_10 AC 16 ms
7,820 KB
testcase_11 AC 17 ms
7,740 KB
testcase_12 AC 17 ms
7,948 KB
testcase_13 AC 17 ms
7,860 KB
testcase_14 AC 18 ms
7,860 KB
testcase_15 AC 156 ms
29,812 KB
testcase_16 AC 159 ms
29,868 KB
testcase_17 AC 156 ms
29,856 KB
testcase_18 AC 157 ms
29,980 KB
testcase_19 AC 156 ms
29,812 KB
testcase_20 AC 159 ms
29,896 KB
testcase_21 AC 156 ms
29,972 KB
testcase_22 AC 157 ms
29,856 KB
testcase_23 AC 160 ms
29,864 KB
testcase_24 AC 152 ms
29,932 KB
testcase_25 AC 158 ms
29,860 KB
testcase_26 AC 156 ms
29,928 KB
testcase_27 AC 158 ms
29,864 KB
testcase_28 AC 160 ms
29,928 KB
testcase_29 AC 153 ms
29,920 KB
testcase_30 AC 16 ms
7,824 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;f=c[i]-1;c[f],c[i]=c[i],c[f]
else:print("NO"if b%2or b<0else"YES")
0