結果

問題 No.2089 置換の符号
ユーザー ripityripity
提出日時 2022-09-30 21:35:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 187 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-12-22 22:37:29
合計ジャッジ時間 18,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,872 KB
testcase_01 AC 36 ms
21,888 KB
testcase_02 AC 34 ms
15,616 KB
testcase_03 AC 32 ms
16,000 KB
testcase_04 AC 31 ms
15,872 KB
testcase_05 AC 29 ms
21,888 KB
testcase_06 AC 32 ms
15,616 KB
testcase_07 AC 33 ms
16,128 KB
testcase_08 AC 33 ms
10,496 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,368 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 29 ms
10,368 KB
testcase_16 AC 33 ms
10,368 KB
testcase_17 AC 31 ms
10,368 KB
testcase_18 AC 31 ms
10,496 KB
testcase_19 AC 32 ms
10,496 KB
testcase_20 AC 29 ms
10,368 KB
testcase_21 AC 29 ms
10,368 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 53 ms
10,624 KB
testcase_24 AC 88 ms
10,752 KB
testcase_25 AC 153 ms
10,624 KB
testcase_26 AC 214 ms
10,752 KB
testcase_27 AC 1,287 ms
10,752 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
cnt = 0

for i in range(N):
    for j in range(N):
        if i < j and A[i] > A[j]: cnt += 1

if cnt%2 == 0: print(1)
else: print(-1)
0