結果

問題 No.1687 What the Heck?
ユーザー shinichishinichi
提出日時 2021-09-24 23:09:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 136,088 KB
最終ジャッジ日時 2024-07-05 11:27:59
合計ジャッジ時間 2,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 34 ms
51,328 KB
testcase_02 WA -
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 35 ms
51,200 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 65 ms
85,888 KB
testcase_08 AC 77 ms
96,768 KB
testcase_09 WA -
testcase_10 AC 57 ms
77,952 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 112 ms
135,804 KB
testcase_14 AC 111 ms
134,400 KB
testcase_15 AC 109 ms
134,272 KB
testcase_16 AC 109 ms
134,188 KB
testcase_17 AC 45 ms
64,384 KB
testcase_18 AC 107 ms
134,272 KB
testcase_19 AC 43 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

total = 0
used = set()
for i in range(N-1, -1, -1):
    p = P[i]
    if p != N and p+1 not in used:
        total += i+1
        used.add(p+1)
    elif p not in used:
        used.add(p)
    else:
        total -= i+1
        for j in range(1, N):
            if j not in used:
                used.add(j)
                break
print(total)
0