結果

問題 No.2036 Max Middle
ユーザー tamatotamato
提出日時 2022-08-12 21:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 118,940 KB
最終ジャッジ日時 2024-09-23 01:48:49
合計ジャッジ時間 2,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,472 KB
testcase_01 AC 37 ms
53,672 KB
testcase_02 AC 36 ms
53,428 KB
testcase_03 AC 38 ms
51,880 KB
testcase_04 AC 38 ms
52,348 KB
testcase_05 AC 37 ms
53,228 KB
testcase_06 AC 37 ms
52,752 KB
testcase_07 AC 38 ms
52,312 KB
testcase_08 AC 76 ms
95,176 KB
testcase_09 AC 96 ms
102,624 KB
testcase_10 AC 110 ms
111,716 KB
testcase_11 AC 98 ms
118,856 KB
testcase_12 AC 99 ms
118,272 KB
testcase_13 AC 113 ms
112,308 KB
testcase_14 AC 45 ms
60,288 KB
testcase_15 AC 45 ms
60,416 KB
testcase_16 AC 110 ms
111,992 KB
testcase_17 AC 99 ms
116,620 KB
testcase_18 AC 90 ms
116,468 KB
testcase_19 AC 97 ms
118,516 KB
testcase_20 AC 100 ms
118,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline
    
    N = int(input())
    A = list(map(int, input().split()))
    
    B = []
    for i in range(N - 1):
        if A[i+1] > A[i]:
            B.append(1)
        else:
            B.append(0)
    ans = 0
    cnt_1 = 0
    for b in B:
        if b == 0:
            ans += cnt_1
        else:
            cnt_1 += 1
    print(ans)


if __name__ == '__main__':
    main()
0