結果

問題 No.1233 割り切れない気持ち
ユーザー titiatitia
提出日時 2020-09-19 04:13:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 3,153 ms
コード長 377 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 81,440 KB
実行使用メモリ 124,440 KB
最終ジャッジ日時 2024-06-23 00:02:27
合計ジャッジ時間 7,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
109,708 KB
testcase_01 AC 75 ms
108,308 KB
testcase_02 AC 101 ms
108,240 KB
testcase_03 AC 135 ms
111,108 KB
testcase_04 AC 116 ms
110,528 KB
testcase_05 AC 109 ms
108,852 KB
testcase_06 AC 112 ms
108,216 KB
testcase_07 AC 190 ms
121,820 KB
testcase_08 AC 180 ms
122,700 KB
testcase_09 AC 191 ms
115,364 KB
testcase_10 AC 205 ms
116,584 KB
testcase_11 AC 162 ms
121,440 KB
testcase_12 AC 207 ms
114,180 KB
testcase_13 AC 203 ms
114,000 KB
testcase_14 AC 194 ms
114,000 KB
testcase_15 AC 205 ms
113,912 KB
testcase_16 AC 216 ms
114,076 KB
testcase_17 AC 106 ms
124,372 KB
testcase_18 AC 246 ms
113,896 KB
testcase_19 AC 107 ms
118,140 KB
testcase_20 AC 118 ms
124,380 KB
testcase_21 AC 111 ms
120,036 KB
testcase_22 AC 111 ms
119,784 KB
testcase_23 AC 112 ms
119,592 KB
testcase_24 AC 111 ms
119,348 KB
testcase_25 AC 109 ms
119,416 KB
testcase_26 AC 110 ms
119,348 KB
testcase_27 AC 111 ms
117,180 KB
testcase_28 AC 113 ms
117,304 KB
testcase_29 AC 116 ms
117,320 KB
testcase_30 AC 113 ms
117,032 KB
testcase_31 AC 112 ms
117,176 KB
testcase_32 AC 112 ms
117,152 KB
testcase_33 AC 114 ms
116,976 KB
testcase_34 AC 111 ms
117,180 KB
testcase_35 AC 109 ms
117,268 KB
testcase_36 AC 109 ms
117,212 KB
testcase_37 AC 73 ms
107,980 KB
testcase_38 AC 117 ms
124,440 KB
testcase_39 AC 187 ms
117,188 KB
testcase_40 AC 187 ms
117,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