結果
問題 | No.1233 割り切れない気持ち |
ユーザー | ygd. |
提出日時 | 2020-09-18 22:50:34 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 823 bytes |
コンパイル時間 | 272 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 110,048 KB |
最終ジャッジ日時 | 2024-06-22 17:07:55 |
合計ジャッジ時間 | 13,688 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
64,080 KB |
testcase_01 | AC | 35 ms
56,488 KB |
testcase_02 | AC | 42 ms
64,204 KB |
testcase_03 | AC | 52 ms
75,392 KB |
testcase_04 | AC | 57 ms
75,164 KB |
testcase_05 | AC | 41 ms
62,856 KB |
testcase_06 | AC | 41 ms
64,000 KB |
testcase_07 | AC | 184 ms
85,308 KB |
testcase_08 | AC | 274 ms
90,820 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 166 ms
84,928 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 164 ms
106,748 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 109 ms
106,752 KB |
testcase_21 | AC | 209 ms
108,024 KB |
testcase_22 | AC | 223 ms
108,140 KB |
testcase_23 | AC | 211 ms
107,844 KB |
testcase_24 | AC | 203 ms
108,056 KB |
testcase_25 | AC | 201 ms
107,800 KB |
testcase_26 | AC | 211 ms
108,000 KB |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
class BIT: def __init__(self, n): self.n = n self.data = [0]*(n+1) def to_sum(self, i): s = 0 while i > 0: s += self.data[i] i -= (i & -i) return s def add(self, i, x): while i <= self.n: self.data[i] += x i += (i & -i) def get(self, i, j): return self.to_sum(j)-self.to_sum(i-1) N = int(input()) MAX = 4*pow(10,5)+10 Tree = BIT(MAX) A = list(map(int,input().split())) for i in range(N): Tree.add(A[i],1) S = sum(A) MAX = max(A) A.sort() ans = 0 for x in A: if x == 1: continue wari = 0; now = x; fac = 1 for i in range(200000): wari += Tree.get(now,now+x-1)*fac now += x fac += 1 if now > MAX + x: break #print(wari,S-wari*x) ans += S - wari*x print(ans)