結果

問題 No.1687 What the Heck?
ユーザー H20H20
提出日時 2021-09-24 21:37:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 107,848 KB
最終ジャッジ日時 2024-07-05 10:11:52
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 61 ms
77,312 KB
testcase_08 AC 66 ms
84,224 KB
testcase_09 WA -
testcase_10 AC 55 ms
72,192 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 88 ms
107,648 KB
testcase_14 AC 86 ms
106,368 KB
testcase_15 AC 88 ms
106,112 KB
testcase_16 AC 85 ms
105,856 KB
testcase_17 AC 43 ms
62,976 KB
testcase_18 AC 86 ms
106,112 KB
testcase_19 AC 43 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
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(ans)
0