結果

問題 No.2089 置換の符号
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-15 22:24:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 65,080 KB
最終ジャッジ日時 2024-05-10 00:02:44
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,284 KB
testcase_01 AC 39 ms
54,116 KB
testcase_02 AC 38 ms
52,508 KB
testcase_03 AC 38 ms
52,276 KB
testcase_04 AC 38 ms
53,228 KB
testcase_05 AC 37 ms
52,636 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 37 ms
53,312 KB
testcase_08 AC 37 ms
52,284 KB
testcase_09 AC 38 ms
53,444 KB
testcase_10 AC 37 ms
52,472 KB
testcase_11 AC 37 ms
52,604 KB
testcase_12 AC 36 ms
52,768 KB
testcase_13 AC 38 ms
52,432 KB
testcase_14 AC 38 ms
52,776 KB
testcase_15 AC 37 ms
52,152 KB
testcase_16 AC 36 ms
53,420 KB
testcase_17 AC 37 ms
52,332 KB
testcase_18 AC 37 ms
53,712 KB
testcase_19 AC 38 ms
52,768 KB
testcase_20 AC 37 ms
52,360 KB
testcase_21 AC 37 ms
52,620 KB
testcase_22 AC 42 ms
58,720 KB
testcase_23 AC 45 ms
61,276 KB
testcase_24 AC 46 ms
61,236 KB
testcase_25 AC 46 ms
60,528 KB
testcase_26 AC 47 ms
60,280 KB
testcase_27 AC 76 ms
62,916 KB
testcase_28 AC 310 ms
64,844 KB
testcase_29 AC 440 ms
63,896 KB
testcase_30 AC 467 ms
64,200 KB
testcase_31 AC 462 ms
64,672 KB
testcase_32 AC 470 ms
65,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
s=list(map(int,input().split()))
ans=1
for i in range(n):
    for j in range(i+1,n):
        if s[i]>s[j]:ans*=-1
print(ans)

0