結果

問題 No.1687 What the Heck?
ユーザー tcltktcltk
提出日時 2021-09-30 05:14:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 125,604 KB
最終ジャッジ日時 2024-07-17 08:06:57
合計ジャッジ時間 7,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
86,880 KB
testcase_01 AC 125 ms
86,952 KB
testcase_02 AC 124 ms
87,068 KB
testcase_03 AC 127 ms
86,996 KB
testcase_04 AC 124 ms
86,936 KB
testcase_05 AC 124 ms
86,880 KB
testcase_06 AC 121 ms
86,924 KB
testcase_07 AC 299 ms
101,164 KB
testcase_08 AC 380 ms
107,488 KB
testcase_09 AC 298 ms
100,640 KB
testcase_10 AC 236 ms
96,472 KB
testcase_11 AC 243 ms
96,652 KB
testcase_12 AC 658 ms
125,604 KB
testcase_13 AC 659 ms
125,500 KB
testcase_14 AC 653 ms
125,368 KB
testcase_15 AC 655 ms
125,316 KB
testcase_16 AC 653 ms
125,412 KB
testcase_17 AC 161 ms
89,532 KB
testcase_18 AC 657 ms
125,304 KB
testcase_19 AC 135 ms
89,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3
# 3 1 2

# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

def solve(N, P):
    L = [(P[i], i+1) for i in range(N)]
    L.sort()
    s = 0
    ans = 0
    for p, i in L:
        score = s - i
        ans = max(ans, score)
        s += i

    return ans

N = int(input())
P = list(map(int, input().split()))
print(solve(N, P))
0