結果

問題 No.1233 割り切れない気持ち
ユーザー ygd.ygd.
提出日時 2020-09-18 22:55:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 638 ms / 3,153 ms
コード長 989 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 107,948 KB
最終ジャッジ日時 2024-06-22 19:19:36
合計ジャッジ時間 9,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,684 KB
testcase_01 AC 40 ms
54,748 KB
testcase_02 AC 44 ms
60,560 KB
testcase_03 AC 52 ms
71,988 KB
testcase_04 AC 52 ms
70,604 KB
testcase_05 AC 40 ms
59,300 KB
testcase_06 AC 41 ms
60,832 KB
testcase_07 AC 169 ms
83,876 KB
testcase_08 AC 233 ms
88,996 KB
testcase_09 AC 403 ms
101,232 KB
testcase_10 AC 415 ms
103,648 KB
testcase_11 AC 165 ms
83,900 KB
testcase_12 AC 456 ms
107,440 KB
testcase_13 AC 450 ms
107,396 KB
testcase_14 AC 472 ms
107,760 KB
testcase_15 AC 466 ms
107,600 KB
testcase_16 AC 475 ms
107,828 KB
testcase_17 AC 109 ms
105,544 KB
testcase_18 AC 638 ms
107,780 KB
testcase_19 AC 109 ms
107,948 KB
testcase_20 AC 114 ms
105,188 KB
testcase_21 AC 140 ms
106,856 KB
testcase_22 AC 135 ms
106,252 KB
testcase_23 AC 135 ms
106,188 KB
testcase_24 AC 138 ms
106,664 KB
testcase_25 AC 136 ms
106,248 KB
testcase_26 AC 135 ms
106,248 KB
testcase_27 AC 152 ms
106,980 KB
testcase_28 AC 154 ms
106,716 KB
testcase_29 AC 147 ms
106,956 KB
testcase_30 AC 145 ms
107,328 KB
testcase_31 AC 142 ms
107,148 KB
testcase_32 AC 141 ms
107,536 KB
testcase_33 AC 143 ms
107,224 KB
testcase_34 AC 143 ms
107,136 KB
testcase_35 AC 142 ms
106,944 KB
testcase_36 AC 138 ms
106,764 KB
testcase_37 AC 37 ms
54,348 KB
testcase_38 AC 103 ms
105,492 KB
testcase_39 AC 344 ms
106,520 KB
testcase_40 AC 352 ms
106,224 KB
権限があれば一括ダウンロードができます

ソースコード

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
prevx = -1
for x in A:
  if x == 1:
    continue
  if x == prevx:
    ans += temp
    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)
  temp = S - wari*x
  ans += temp
  prevx = x
print(ans)

0