結果

問題 No.1233 割り切れない気持ち
ユーザー titiatitia
提出日時 2020-09-19 04:11:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 395 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,376 KB
最終ジャッジ日時 2024-06-23 00:01:02
合計ジャッジ時間 42,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
18,560 KB
testcase_01 AC 110 ms
18,688 KB
testcase_02 AC 737 ms
18,548 KB
testcase_03 AC 1,375 ms
34,224 KB
testcase_04 AC 1,112 ms
34,168 KB
testcase_05 AC 752 ms
18,648 KB
testcase_06 AC 907 ms
18,688 KB
testcase_07 AC 2,104 ms
36,992 KB
testcase_08 AC 1,948 ms
38,296 KB
testcase_09 AC 2,433 ms
42,404 KB
testcase_10 AC 2,142 ms
43,148 KB
testcase_11 AC 2,155 ms
36,168 KB
testcase_12 AC 2,267 ms
44,180 KB
testcase_13 AC 2,127 ms
44,156 KB
testcase_14 AC 2,236 ms
44,204 KB
testcase_15 AC 2,240 ms
44,096 KB
testcase_16 AC 2,458 ms
44,172 KB
testcase_17 AC 201 ms
37,408 KB
testcase_18 TLE -
testcase_19 AC 195 ms
40,144 KB
testcase_20 AC 376 ms
37,688 KB
testcase_21 AC 262 ms
44,332 KB
testcase_22 AC 244 ms
44,256 KB
testcase_23 AC 236 ms
44,052 KB
testcase_24 AC 227 ms
44,192 KB
testcase_25 AC 235 ms
44,252 KB
testcase_26 AC 219 ms
44,376 KB
testcase_27 AC 222 ms
44,152 KB
testcase_28 AC 218 ms
44,144 KB
testcase_29 AC 217 ms
44,244 KB
testcase_30 AC 210 ms
44,144 KB
testcase_31 AC 213 ms
44,244 KB
testcase_32 AC 212 ms
44,080 KB
testcase_33 AC 214 ms
44,212 KB
testcase_34 AC 214 ms
44,248 KB
testcase_35 AC 209 ms
44,376 KB
testcase_36 AC 213 ms
44,232 KB
testcase_37 AC 112 ms
18,644 KB
testcase_38 AC 381 ms
37,560 KB
testcase_39 AC 2,017 ms
41,000 KB
testcase_40 AC 1,946 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
S=sum(A)

U=[0]*(5*10**5+1)
for a in A:
    U[a]+=1

from itertools import accumulate
ACC=list(accumulate(U))

ANS=0

for i in range(5*10**5+1):
    if U[i]==0:
        continue

    ANS+=S*U[i]
    for j in range(i+i-1,5*10**5+1,i):
        ANS-=U[i]*i*(ACC[j]-ACC[j-i])*(j//i)

print(ANS)
        
    



0