結果
問題 | No.2956 Substitute with Average |
ユーザー | mkawa2 |
提出日時 | 2024-11-08 23:53:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,105 bytes |
コンパイル時間 | 422 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 85,120 KB |
最終ジャッジ日時 | 2024-11-08 23:53:31 |
合計ジャッジ時間 | 3,399 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,968 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 38 ms
51,840 KB |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 38 ms
52,480 KB |
testcase_08 | AC | 38 ms
52,480 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 59 ms
77,952 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 60 ms
78,976 KB |
testcase_23 | AC | 60 ms
78,336 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
import sys # sys.setrecursionlimit(200005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = -1-(-1 << 31) inf = -1-(-1 << 62) # md = 10**9+7 md = 998244353 n=II() aa=LI() ans=n*(n+1)//2-n+1 for v in set(aa): s=0 cnt=[0]*40 cnt0=[0]*40 cnt[0]=1 for i,a in enumerate(aa): s+=a-v if i+1<n and aa[i+1]==0: ans-=cnt[s] else: ans-=cnt0[s] cnt[s]+=1 if a-v==0: cnt0[s]+=1 # print(v,ans) print(ans)