結果

問題 No.1687 What the Heck?
ユーザー H20H20
提出日時 2021-09-24 21:57:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 107,764 KB
最終ジャッジ日時 2024-07-05 10:32:28
合計ジャッジ時間 2,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,608 KB
testcase_01 AC 32 ms
53,032 KB
testcase_02 AC 33 ms
53,028 KB
testcase_03 AC 32 ms
52,332 KB
testcase_04 AC 33 ms
52,492 KB
testcase_05 AC 33 ms
52,216 KB
testcase_06 AC 32 ms
52,364 KB
testcase_07 AC 53 ms
76,936 KB
testcase_08 AC 60 ms
85,196 KB
testcase_09 AC 55 ms
78,416 KB
testcase_10 AC 48 ms
71,872 KB
testcase_11 AC 48 ms
72,676 KB
testcase_12 AC 82 ms
107,764 KB
testcase_13 AC 83 ms
107,576 KB
testcase_14 AC 81 ms
107,124 KB
testcase_15 AC 81 ms
107,356 KB
testcase_16 AC 80 ms
106,184 KB
testcase_17 AC 41 ms
62,828 KB
testcase_18 AC 80 ms
106,976 KB
testcase_19 AC 40 ms
60,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
if N == 1:
    print(0)
    exit()
if N == 2 and P[0]==1:
    print(0)
    exit()

i = P.index(N)+1
ans1 = N*(N+1)//2-i*2

P = P[::-1]
L = [0]*(N+1)
ans = 0
mi = 1
for i in range(N):
    p = P[i]
    for j in range(p+1,N+1):
        if L[j]==0:
            L[j]=1
            ans += N-i
            break
    else:
        if L[p]==0:
            L[p]=1
        else:
            for j in range(mi,N+1):
                if L[j]==0:
                    mi=j+1
                    L[j]=1

                    ans -= N-i
                    break
print(max(ans,ans1))
0