結果

問題 No.2036 Max Middle
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-15 23:30:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 104,912 KB
最終ジャッジ日時 2024-10-02 11:55:07
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,848 KB
testcase_01 AC 37 ms
52,276 KB
testcase_02 AC 38 ms
52,696 KB
testcase_03 AC 41 ms
51,816 KB
testcase_04 AC 38 ms
52,084 KB
testcase_05 AC 38 ms
52,760 KB
testcase_06 AC 37 ms
53,292 KB
testcase_07 AC 38 ms
52,268 KB
testcase_08 AC 72 ms
86,308 KB
testcase_09 AC 90 ms
104,912 KB
testcase_10 AC 98 ms
101,692 KB
testcase_11 AC 83 ms
104,644 KB
testcase_12 AC 80 ms
102,912 KB
testcase_13 AC 98 ms
102,132 KB
testcase_14 AC 43 ms
60,372 KB
testcase_15 AC 43 ms
60,756 KB
testcase_16 AC 95 ms
102,244 KB
testcase_17 AC 75 ms
97,468 KB
testcase_18 AC 78 ms
103,028 KB
testcase_19 AC 81 ms
103,444 KB
testcase_20 AC 83 ms
104,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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