結果

問題 No.2089 置換の符号
ユーザー ryota sasairyota sasai
提出日時 2022-09-30 22:47:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 994 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 84,260 KB
最終ジャッジ日時 2024-06-02 06:19:41
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,868 KB
testcase_01 AC 34 ms
52,700 KB
testcase_02 AC 35 ms
51,956 KB
testcase_03 AC 35 ms
53,300 KB
testcase_04 AC 35 ms
52,692 KB
testcase_05 AC 34 ms
53,580 KB
testcase_06 AC 34 ms
52,728 KB
testcase_07 AC 32 ms
53,144 KB
testcase_08 AC 34 ms
52,000 KB
testcase_09 AC 34 ms
52,964 KB
testcase_10 AC 33 ms
52,156 KB
testcase_11 AC 34 ms
52,444 KB
testcase_12 AC 32 ms
52,996 KB
testcase_13 AC 33 ms
52,944 KB
testcase_14 AC 33 ms
52,004 KB
testcase_15 AC 32 ms
52,764 KB
testcase_16 AC 35 ms
52,076 KB
testcase_17 AC 33 ms
52,220 KB
testcase_18 AC 32 ms
53,372 KB
testcase_19 AC 32 ms
52,636 KB
testcase_20 AC 32 ms
52,964 KB
testcase_21 AC 33 ms
52,752 KB
testcase_22 AC 42 ms
60,804 KB
testcase_23 AC 49 ms
68,620 KB
testcase_24 AC 61 ms
75,232 KB
testcase_25 AC 59 ms
75,420 KB
testcase_26 AC 63 ms
74,972 KB
testcase_27 AC 102 ms
75,660 KB
testcase_28 AC 622 ms
80,196 KB
testcase_29 AC 721 ms
81,224 KB
testcase_30 AC 690 ms
80,136 KB
testcase_31 AC 962 ms
84,260 KB
testcase_32 AC 994 ms
84,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

_,S=input(),list(map(lambda k:int(k),(input()).split(" ")))
print(-1 if sum(1 for i, k in enumerate(S) for l in S[:i] if k < l) % 2 else 1)
0