結果

問題 No.1687 What the Heck?
ユーザー asumo0729asumo0729
提出日時 2021-09-24 21:56:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,684 KB
実行使用メモリ 107,108 KB
最終ジャッジ日時 2024-07-05 10:31:41
合計ジャッジ時間 2,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,888 KB
testcase_01 AC 37 ms
54,400 KB
testcase_02 AC 36 ms
53,888 KB
testcase_03 AC 37 ms
54,272 KB
testcase_04 AC 37 ms
54,528 KB
testcase_05 AC 36 ms
54,144 KB
testcase_06 AC 36 ms
54,400 KB
testcase_07 AC 61 ms
77,696 KB
testcase_08 AC 63 ms
83,712 KB
testcase_09 AC 56 ms
77,508 KB
testcase_10 AC 51 ms
72,832 KB
testcase_11 AC 53 ms
72,960 KB
testcase_12 AC 88 ms
106,880 KB
testcase_13 AC 90 ms
107,108 KB
testcase_14 AC 89 ms
106,844 KB
testcase_15 AC 90 ms
106,620 KB
testcase_16 AC 89 ms
106,520 KB
testcase_17 AC 46 ms
65,984 KB
testcase_18 AC 89 ms
106,624 KB
testcase_19 AC 46 ms
63,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
import bisect

stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
eps = 1e-9
sortkey = itemgetter(0)

###############################################################

N = ip()
A = lp()
ans = 0
score = [0 for _ in range(N + 1)]
for i in range(N):
    p = A[i]
    score[p] = i + 1

S = sum(score)

for i in range(N, 0, -1):
    x = score[i]
    y = S - score[i]
    ans = max(ans, y - x)
    S -= score[i]
    

print(ans)
0