結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,284 KB
testcase_01 AC 39 ms
52,444 KB
testcase_02 AC 38 ms
52,664 KB
testcase_03 AC 37 ms
52,200 KB
testcase_04 AC 38 ms
52,788 KB
testcase_05 AC 37 ms
51,564 KB
testcase_06 AC 38 ms
53,816 KB
testcase_07 AC 38 ms
52,148 KB
testcase_08 AC 86 ms
99,440 KB
testcase_09 AC 105 ms
105,008 KB
testcase_10 AC 117 ms
111,832 KB
testcase_11 AC 104 ms
113,456 KB
testcase_12 AC 105 ms
119,940 KB
testcase_13 AC 119 ms
112,308 KB
testcase_14 AC 46 ms
61,736 KB
testcase_15 AC 46 ms
61,932 KB
testcase_16 AC 115 ms
112,180 KB
testcase_17 AC 98 ms
117,232 KB
testcase_18 AC 95 ms
117,428 KB
testcase_19 AC 104 ms
120,340 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