結果

問題 No.1233 割り切れない気持ち
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-04 11:16:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 3,153 ms
コード長 547 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 121,520 KB
最終ジャッジ日時 2024-10-04 15:44:14
合計ジャッジ時間 6,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 47 ms
60,288 KB
testcase_04 AC 50 ms
60,032 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 87 ms
88,796 KB
testcase_08 AC 104 ms
95,588 KB
testcase_09 AC 159 ms
111,448 KB
testcase_10 AC 161 ms
115,940 KB
testcase_11 AC 94 ms
86,944 KB
testcase_12 AC 173 ms
121,520 KB
testcase_13 AC 179 ms
121,200 KB
testcase_14 AC 175 ms
121,088 KB
testcase_15 AC 167 ms
121,492 KB
testcase_16 AC 177 ms
121,344 KB
testcase_17 AC 82 ms
97,152 KB
testcase_18 AC 158 ms
121,280 KB
testcase_19 AC 103 ms
120,620 KB
testcase_20 AC 81 ms
97,280 KB
testcase_21 AC 85 ms
99,584 KB
testcase_22 AC 85 ms
99,584 KB
testcase_23 AC 85 ms
100,480 KB
testcase_24 AC 85 ms
99,840 KB
testcase_25 AC 88 ms
99,712 KB
testcase_26 AC 86 ms
99,968 KB
testcase_27 AC 114 ms
120,948 KB
testcase_28 AC 112 ms
120,832 KB
testcase_29 AC 107 ms
118,912 KB
testcase_30 AC 105 ms
119,104 KB
testcase_31 AC 105 ms
118,784 KB
testcase_32 AC 103 ms
118,784 KB
testcase_33 AC 110 ms
119,040 KB
testcase_34 AC 111 ms
119,008 KB
testcase_35 AC 105 ms
119,424 KB
testcase_36 AC 104 ms
118,784 KB
testcase_37 AC 40 ms
51,584 KB
testcase_38 AC 100 ms
115,584 KB
testcase_39 AC 133 ms
119,808 KB
testcase_40 AC 133 ms
119,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,a):
  ret=n*sum(a)
  m=max(a)
  ary=[0]*(m+1)
  for x in a:ary[x]+=1
  sary=[0]
  for x in ary:sary.append(sary[-1]+x)
  memo={}
  for x in a:
    if x in memo:
      ret+=memo[x]
      continue
    tmp=0
    i=1
    while i*x<=m:
      # xで割った商がiになる数字の個数
      # [i*x,(i+1)*x)
      s=i*x
      e=min((i+1)*x,m+1)
      t=sary[e]-sary[s]
      tmp-=i*x*t
      i+=1
    memo[x]=tmp
    ret+=tmp
  return ret
if __name__=='__main__':
  n=int(input())
  a=list(map(int,input().split()))
  print(main1(n,a))
0