結果

問題 No.1233 割り切れない気持ち
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-19 13:38:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 783 ms / 3,153 ms
コード長 533 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 110,840 KB
最終ジャッジ日時 2024-06-23 13:07:58
合計ジャッジ時間 10,565 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 45 ms
58,624 KB
testcase_03 AC 69 ms
69,376 KB
testcase_04 AC 65 ms
67,200 KB
testcase_05 AC 45 ms
56,704 KB
testcase_06 AC 46 ms
58,368 KB
testcase_07 AC 193 ms
83,120 KB
testcase_08 AC 282 ms
87,552 KB
testcase_09 AC 480 ms
100,412 KB
testcase_10 AC 495 ms
104,344 KB
testcase_11 AC 169 ms
81,968 KB
testcase_12 AC 552 ms
107,648 KB
testcase_13 AC 555 ms
107,920 KB
testcase_14 AC 573 ms
107,164 KB
testcase_15 AC 569 ms
107,636 KB
testcase_16 AC 589 ms
107,220 KB
testcase_17 AC 85 ms
97,056 KB
testcase_18 AC 783 ms
110,840 KB
testcase_19 AC 95 ms
103,104 KB
testcase_20 AC 85 ms
97,548 KB
testcase_21 AC 124 ms
102,712 KB
testcase_22 AC 118 ms
102,156 KB
testcase_23 AC 124 ms
102,672 KB
testcase_24 AC 116 ms
103,304 KB
testcase_25 AC 117 ms
103,008 KB
testcase_26 AC 119 ms
102,736 KB
testcase_27 AC 134 ms
107,128 KB
testcase_28 AC 135 ms
106,736 KB
testcase_29 AC 132 ms
106,912 KB
testcase_30 AC 133 ms
106,816 KB
testcase_31 AC 133 ms
107,140 KB
testcase_32 AC 131 ms
107,020 KB
testcase_33 AC 144 ms
106,588 KB
testcase_34 AC 136 ms
106,732 KB
testcase_35 AC 135 ms
106,732 KB
testcase_36 AC 144 ms
107,396 KB
testcase_37 AC 42 ms
53,208 KB
testcase_38 AC 89 ms
97,280 KB
testcase_39 AC 406 ms
104,892 KB
testcase_40 AC 397 ms
105,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
a.sort()
from bisect import bisect_left,bisect_right
ans=0
d=dict()
for i in range(n):
    if a[i] in d:
        ans+=d[a[i]]
        continue
    ans_sub=0
    j=i
    #print(i)
    while j!=n:
        x=a[j]//a[i]
        b=bisect_left(a,(x+1)*a[i],lo=j)-1
        #print((x+1)*a[i])
        #print(j,b)
        #print(j,x,b-j+1)
        ans_sub+=(x*(b-j+1)*a[i])
        j=b+1
        #print(j,b)
    d[a[i]]=ans_sub
    ans+=ans_sub
#print(sum(a)*n)
#print(ans)
print(sum(a)*n-ans)
0