結果

問題 No.2036 Max Middle
ユーザー FromBooskaFromBooska
提出日時 2023-04-18 14:28:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 120,932 KB
最終ジャッジ日時 2024-10-13 13:08:37
合計ジャッジ時間 2,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,268 KB
testcase_01 AC 35 ms
52,900 KB
testcase_02 AC 37 ms
51,696 KB
testcase_03 AC 35 ms
52,184 KB
testcase_04 AC 35 ms
53,612 KB
testcase_05 AC 34 ms
52,640 KB
testcase_06 AC 36 ms
52,748 KB
testcase_07 AC 37 ms
52,368 KB
testcase_08 AC 73 ms
95,736 KB
testcase_09 AC 95 ms
104,356 KB
testcase_10 AC 108 ms
112,420 KB
testcase_11 AC 95 ms
113,516 KB
testcase_12 AC 96 ms
119,804 KB
testcase_13 AC 109 ms
112,644 KB
testcase_14 AC 44 ms
60,952 KB
testcase_15 AC 47 ms
61,296 KB
testcase_16 AC 107 ms
111,816 KB
testcase_17 AC 87 ms
113,364 KB
testcase_18 AC 89 ms
116,972 KB
testcase_19 AC 98 ms
120,188 KB
testcase_20 AC 103 ms
120,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 前回の手法で可能ではあるが思いつき不可能なので公式解説の方法に変える
# N項間に不等号を書く、N-1個
# その不等号が<>のときは、><に変わる、それが何回可能か
# スタックはTLEした
# 左から数え上げてみる

N = int(input())
A = list(map(int, input().split()))
signs = []
for i in range(1, N):
    if A[i-1] < A[i]:
        signs.append('<')
    else:
        signs.append('>')
    # equalは制約でない
    
# 2個のdequeはTLEした
# 左から数え上げてみよう

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

0