結果

問題 No.1687 What the Heck?
ユーザー rlangevinrlangevin
提出日時 2023-01-09 13:24:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 111 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,992 KB
最終ジャッジ日時 2024-05-09 22:48:41
合計ジャッジ時間 2,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 53 ms
72,704 KB
testcase_10 AC 49 ms
67,200 KB
testcase_11 AC 48 ms
68,224 KB
testcase_12 AC 80 ms
100,608 KB
testcase_13 AC 79 ms
100,992 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
i = P.index(N)
print(max(0, N * (N + 1)//2 - 2 * (i + 1)))
0