結果

問題 No.2036 Max Middle
ユーザー titiatitia
提出日時 2022-08-14 02:59:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,964 KB
最終ジャッジ日時 2024-09-25 05:36:26
合計ジャッジ時間 2,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 97 ms
22,208 KB
testcase_09 AC 146 ms
30,596 KB
testcase_10 AC 152 ms
32,168 KB
testcase_11 AC 150 ms
29,400 KB
testcase_12 AC 145 ms
30,628 KB
testcase_13 AC 157 ms
32,520 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 155 ms
32,964 KB
testcase_17 AC 129 ms
17,296 KB
testcase_18 AC 145 ms
30,076 KB
testcase_19 AC 145 ms
30,148 KB
testcase_20 AC 149 ms
29,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

SUM=0
ANS=0

for i in range(N-1):
    if A[i]<A[i+1]:
        SUM+=1
    else:
        ANS+=SUM

print(ANS)
    
0