結果

問題 No.1525 Meximum Sum
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-03 02:15:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 114,304 KB
最終ジャッジ日時 2024-09-03 02:15:57
合計ジャッジ時間 8,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,344 KB
testcase_01 AC 39 ms
53,692 KB
testcase_02 AC 42 ms
52,500 KB
testcase_03 AC 38 ms
52,752 KB
testcase_04 AC 37 ms
52,072 KB
testcase_05 AC 37 ms
53,040 KB
testcase_06 AC 38 ms
52,492 KB
testcase_07 AC 38 ms
52,880 KB
testcase_08 AC 277 ms
110,896 KB
testcase_09 AC 281 ms
114,304 KB
testcase_10 AC 107 ms
80,424 KB
testcase_11 AC 149 ms
91,048 KB
testcase_12 AC 277 ms
113,432 KB
testcase_13 AC 359 ms
112,600 KB
testcase_14 AC 320 ms
112,380 KB
testcase_15 AC 325 ms
112,076 KB
testcase_16 AC 325 ms
112,752 KB
testcase_17 AC 366 ms
112,568 KB
testcase_18 AC 325 ms
112,804 KB
testcase_19 AC 339 ms
112,132 KB
testcase_20 AC 348 ms
112,340 KB
testcase_21 AC 325 ms
112,076 KB
testcase_22 AC 332 ms
112,228 KB
testcase_23 AC 109 ms
112,048 KB
testcase_24 AC 108 ms
112,132 KB
testcase_25 AC 122 ms
112,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/no/1525




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

    a_list = [(i, a) for i, a in enumerate(A)]  
    a_list.sort(key=lambda x : x[1])


    left = N
    right = -1
    answer = 0
    for i, _ in a_list:
        left = min(left, i)
        right = max(right, i)

        ans = (left + 1) * (N - right)   
        answer += ans
    print(answer)





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