結果

問題 No.1233 割り切れない気持ち
ユーザー ygd.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
61,880 KB
testcase_01 AC 35 ms
54,648 KB
testcase_02 AC 42 ms
62,436 KB
testcase_03 AC 56 ms
74,624 KB
testcase_04 AC 56 ms
74,016 KB
testcase_05 AC 41 ms
61,888 KB
testcase_06 AC 42 ms
62,428 KB
testcase_07 AC 170 ms
83,940 KB
testcase_08 AC 263 ms
89,272 KB
testcase_09 AC 476 ms
100,848 KB
testcase_10 AC 491 ms
104,012 KB
testcase_11 AC 165 ms
83,536 KB
testcase_12 AC 562 ms
107,788 KB
testcase_13 AC 531 ms
108,448 KB
testcase_14 AC 579 ms
107,660 KB
testcase_15 AC 548 ms
107,816 KB
testcase_16 AC 548 ms
108,108 KB
testcase_17 AC 143 ms
105,216 KB
testcase_18 AC 529 ms
107,692 KB
testcase_19 AC 149 ms
108,140 KB
testcase_20 AC 104 ms
105,448 KB
testcase_21 AC 173 ms
106,860 KB
testcase_22 AC 170 ms
106,996 KB
testcase_23 AC 170 ms
106,392 KB
testcase_24 AC 165 ms
106,276 KB
testcase_25 AC 167 ms
106,684 KB
testcase_26 AC 166 ms
106,488 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 -- -
権限があれば一括ダウンロードができます

ソースコード

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

0