結果

問題 No.2036 Max Middle
ユーザー 👑 rin204rin204
提出日時 2022-08-15 20:17:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 105,688 KB
最終ジャッジ日時 2024-10-02 08:40:01
合計ジャッジ時間 3,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,092 KB
testcase_01 AC 39 ms
52,440 KB
testcase_02 AC 39 ms
51,964 KB
testcase_03 AC 38 ms
51,696 KB
testcase_04 AC 40 ms
52,384 KB
testcase_05 AC 39 ms
52,212 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 39 ms
53,288 KB
testcase_08 AC 72 ms
86,632 KB
testcase_09 AC 93 ms
104,360 KB
testcase_10 AC 104 ms
101,516 KB
testcase_11 AC 87 ms
105,688 KB
testcase_12 AC 85 ms
103,452 KB
testcase_13 AC 104 ms
102,324 KB
testcase_14 AC 44 ms
60,284 KB
testcase_15 AC 46 ms
60,328 KB
testcase_16 AC 100 ms
102,000 KB
testcase_17 AC 79 ms
98,244 KB
testcase_18 AC 83 ms
102,804 KB
testcase_19 AC 85 ms
102,936 KB
testcase_20 AC 88 ms
104,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
c = 0
ans = 0
for i in range(1, n):
    if A[i - 1] > A[i]:
        ans += c
    else:
        c += 1
print(ans)
0