結果
| 問題 |
No.1233 割り切れない気持ち
|
| コンテスト | |
| ユーザー |
ygd.
|
| 提出日時 | 2020-09-18 22:52:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 906 bytes |
| コンパイル時間 | 262 ms |
| コンパイル使用メモリ | 82,080 KB |
| 実行使用メモリ | 113,904 KB |
| 最終ジャッジ日時 | 2024-06-22 17:08:09 |
| 合計ジャッジ時間 | 12,640 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 25 TLE * 1 -- * 13 |
ソースコード
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 = 2*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):
if now+x-1 >= MAX:
wari += Tree.get(now,MAX)*fac
break
else:
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)
ygd.