結果

問題 No.1233 割り切れない気持ち
ユーザー ygd.ygd.
提出日時 2020-09-18 22:49:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 823 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 108,736 KB
最終ジャッジ日時 2024-06-22 17:06:06
合計ジャッジ時間 10,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,776 KB
testcase_01 AC 40 ms
54,104 KB
testcase_02 AC 45 ms
61,444 KB
testcase_03 AC 61 ms
75,444 KB
testcase_04 AC 58 ms
73,044 KB
testcase_05 AC 45 ms
62,108 KB
testcase_06 AC 47 ms
61,588 KB
testcase_07 AC 243 ms
83,804 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 217 ms
83,436 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 213 ms
105,184 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 119 ms
105,016 KB
testcase_21 AC 253 ms
106,064 KB
testcase_22 AC 248 ms
106,652 KB
testcase_23 AC 249 ms
106,384 KB
testcase_24 AC 248 ms
106,592 KB
testcase_25 AC 251 ms
106,516 KB
testcase_26 AC 250 ms
106,692 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 41 ms
54,980 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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(100000):
    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)

0