結果

問題 No.1687 What the Heck?
ユーザー roarisroaris
提出日時 2021-09-24 21:34:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-07-05 10:10:12
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 WA -
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 38 ms
53,760 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 39 ms
53,760 KB
testcase_07 AC 60 ms
75,264 KB
testcase_08 AC 70 ms
81,664 KB
testcase_09 WA -
testcase_10 AC 57 ms
70,656 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 90 ms
104,132 KB
testcase_14 AC 91 ms
104,108 KB
testcase_15 AC 90 ms
104,576 KB
testcase_16 AC 89 ms
103,824 KB
testcase_17 AC 46 ms
63,744 KB
testcase_18 AC 93 ms
104,704 KB
testcase_19 AC 42 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
P = list(map(int, input().split()))
flag = [False]*N
ans = 0

for i in range(N-1, -1, -1):
    P[i] -= 1
    
    if P[i]==N-1:
        if flag[N-1]:
            ans -= i+1
        else:
            flag[N-1] = True
    else:
        if flag[P[i]+1]:
            if flag[P[i]]:
                ans -= i+1
            else:
                flag[P[i]] = True
        else:
            flag[P[i]+1] = True
            ans += i+1

print(ans)
0