結果

問題 No.1687 What the Heck?
ユーザー tcltktcltk
提出日時 2021-09-30 04:55:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 118,884 KB
最終ジャッジ日時 2024-07-17 07:52:29
合計ジャッジ時間 4,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
86,448 KB
testcase_01 AC 129 ms
86,520 KB
testcase_02 AC 134 ms
86,316 KB
testcase_03 WA -
testcase_04 AC 123 ms
86,480 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 140 ms
96,680 KB
testcase_10 AC 138 ms
93,312 KB
testcase_11 AC 138 ms
93,552 KB
testcase_12 AC 167 ms
118,744 KB
testcase_13 AC 167 ms
118,884 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

def solve(N, P):
    if N == 1:
        return 0

    s = N*(N+1)//2
    ans = 0
    for i in range(N):
        if P[i] == N:
            return s - (i+1)*2

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