結果

問題 No.2036 Max Middle
ユーザー rlangevinrlangevin
提出日時 2022-08-21 15:53:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 105,296 KB
最終ジャッジ日時 2024-10-10 06:13:46
合計ジャッジ時間 3,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,112 KB
testcase_01 AC 38 ms
52,484 KB
testcase_02 AC 36 ms
52,256 KB
testcase_03 AC 35 ms
52,396 KB
testcase_04 AC 35 ms
53,084 KB
testcase_05 AC 36 ms
52,004 KB
testcase_06 AC 36 ms
53,596 KB
testcase_07 AC 36 ms
53,068 KB
testcase_08 AC 69 ms
85,908 KB
testcase_09 AC 87 ms
104,512 KB
testcase_10 AC 96 ms
101,916 KB
testcase_11 AC 82 ms
105,296 KB
testcase_12 AC 81 ms
103,612 KB
testcase_13 AC 99 ms
102,236 KB
testcase_14 AC 41 ms
59,960 KB
testcase_15 AC 40 ms
59,892 KB
testcase_16 AC 97 ms
101,992 KB
testcase_17 AC 77 ms
98,628 KB
testcase_18 AC 78 ms
101,752 KB
testcase_19 AC 79 ms
103,752 KB
testcase_20 AC 82 ms
104,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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