結果
問題 | No.1687 What the Heck? |
ユーザー | asumo0729 |
提出日時 | 2021-09-24 21:26:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 580 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 82,096 KB |
実行使用メモリ | 103,444 KB |
最終ジャッジ日時 | 2024-07-05 10:00:46 |
合計ジャッジ時間 | 2,113 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,272 KB |
testcase_01 | WA | - |
testcase_02 | AC | 40 ms
54,144 KB |
testcase_03 | WA | - |
testcase_04 | AC | 41 ms
53,760 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 56 ms
75,008 KB |
testcase_10 | AC | 52 ms
70,912 KB |
testcase_11 | AC | 54 ms
71,168 KB |
testcase_12 | AC | 83 ms
103,424 KB |
testcase_13 | AC | 83 ms
102,912 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import sys from operator import itemgetter from collections import defaultdict, deque import heapq import bisect stdin=sys.stdin sys.setrecursionlimit(10 ** 8) ip=lambda: int(sp()) fp=lambda: float(sp()) lp=lambda:list(map(int,stdin.readline().split())) sp=lambda:stdin.readline().rstrip() Yp=lambda:print('Yes') Np=lambda:print('No') inf = 1 << 60 eps = 1e-9 sortkey = itemgetter(0) ############################################################### N = ip() A = lp() ans = 0 for i in range(N): if A[i] == N: ans -= (i + 1) else: ans += i + 1 print(ans)