結果
| 問題 | No.1687 What the Heck? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-09-30 04:55:52 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 561 bytes |
| 記録 | |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 81,800 KB |
| 実行使用メモリ | 118,884 KB |
| 最終ジャッジ日時 | 2024-07-17 07:52:29 |
| 合計ジャッジ時間 | 4,626 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 11 |
ソースコード
#!/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))