結果

問題 No.2036 Max Middle
ユーザー FromBooskaFromBooska
提出日時 2023-08-10 16:50:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 120,792 KB
最終ジャッジ日時 2024-04-28 10:14:16
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 50 ms
51,840 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 96 ms
99,840 KB
testcase_09 AC 110 ms
104,592 KB
testcase_10 AC 118 ms
112,144 KB
testcase_11 AC 103 ms
113,280 KB
testcase_12 AC 105 ms
119,936 KB
testcase_13 AC 118 ms
112,632 KB
testcase_14 AC 47 ms
60,800 KB
testcase_15 AC 47 ms
60,928 KB
testcase_16 AC 112 ms
112,516 KB
testcase_17 AC 99 ms
117,548 KB
testcase_18 AC 95 ms
116,604 KB
testcase_19 AC 104 ms
120,320 KB
testcase_20 AC 108 ms
120,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 数の間の関係を不等号<, >で表すと
# 操作で<>は><に変わる
# <<<>は><<<に変わるので、<の数を数えていく

N = int(input())
A = list(map(int, input().split()))
B = []
for i in range(1, N):
    if A[i-1] < A[i]:
        B.append('<')
    else:
        B.append('>')
        
subcount = 0
count = 0
for b in B:
    if b == '<':
        subcount += 1
    else:
        count += subcount
print(count)
0