結果

問題 No.2036 Max Middle
ユーザー FromBooskaFromBooska
提出日時 2024-03-18 12:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 120,584 KB
最終ジャッジ日時 2024-09-30 04:53:53
合計ジャッジ時間 3,305 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,292 KB
testcase_01 AC 32 ms
53,856 KB
testcase_02 AC 32 ms
52,888 KB
testcase_03 AC 35 ms
52,160 KB
testcase_04 AC 33 ms
53,604 KB
testcase_05 AC 33 ms
52,764 KB
testcase_06 AC 32 ms
53,592 KB
testcase_07 AC 32 ms
53,216 KB
testcase_08 AC 70 ms
95,680 KB
testcase_09 AC 94 ms
105,020 KB
testcase_10 AC 107 ms
112,100 KB
testcase_11 AC 95 ms
113,420 KB
testcase_12 AC 98 ms
119,984 KB
testcase_13 AC 109 ms
112,568 KB
testcase_14 AC 42 ms
61,772 KB
testcase_15 AC 42 ms
61,648 KB
testcase_16 AC 102 ms
112,320 KB
testcase_17 AC 91 ms
113,824 KB
testcase_18 AC 89 ms
117,648 KB
testcase_19 AC 98 ms
120,264 KB
testcase_20 AC 99 ms
120,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# となりの要素との大小さのみが重要、<>を><に置き換えると考える

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

inequality = []
for i in range(1, N):
    if A[i-1]<A[i]:
        inequality.append('<')
    else:
        inequality.append('>')

#print(inequality)

ans = 0
count = 0
for i in range(N-1):
    if inequality[i] == '<':
        count += 1
    elif inequality[i] == '>':
        ans += count
print(ans)
0