結果

問題 No.1233 割り切れない気持ち
ユーザー roarisroaris
提出日時 2020-12-03 09:02:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 3,153 ms
コード長 421 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 120,548 KB
最終ジャッジ日時 2024-09-13 16:49:05
合計ジャッジ時間 7,994 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
78,832 KB
testcase_01 AC 84 ms
77,304 KB
testcase_02 AC 82 ms
77,920 KB
testcase_03 AC 83 ms
78,936 KB
testcase_04 AC 82 ms
78,252 KB
testcase_05 AC 83 ms
78,504 KB
testcase_06 AC 83 ms
79,712 KB
testcase_07 AC 96 ms
91,292 KB
testcase_08 AC 102 ms
97,784 KB
testcase_09 AC 122 ms
113,540 KB
testcase_10 AC 124 ms
117,004 KB
testcase_11 AC 93 ms
90,768 KB
testcase_12 AC 129 ms
120,304 KB
testcase_13 AC 130 ms
120,336 KB
testcase_14 AC 130 ms
120,204 KB
testcase_15 AC 130 ms
120,428 KB
testcase_16 AC 187 ms
120,548 KB
testcase_17 AC 115 ms
115,904 KB
testcase_18 AC 129 ms
120,468 KB
testcase_19 AC 130 ms
120,468 KB
testcase_20 AC 115 ms
116,352 KB
testcase_21 AC 128 ms
119,452 KB
testcase_22 AC 128 ms
119,564 KB
testcase_23 AC 128 ms
119,632 KB
testcase_24 AC 129 ms
119,188 KB
testcase_25 AC 129 ms
119,352 KB
testcase_26 AC 130 ms
119,172 KB
testcase_27 AC 129 ms
120,112 KB
testcase_28 AC 132 ms
120,360 KB
testcase_29 AC 131 ms
119,792 KB
testcase_30 AC 133 ms
120,340 KB
testcase_31 AC 132 ms
119,992 KB
testcase_32 AC 132 ms
119,608 KB
testcase_33 AC 130 ms
119,924 KB
testcase_34 AC 132 ms
119,652 KB
testcase_35 AC 132 ms
120,148 KB
testcase_36 AC 131 ms
120,308 KB
testcase_37 AC 81 ms
77,484 KB
testcase_38 AC 115 ms
115,720 KB
testcase_39 AC 128 ms
119,920 KB
testcase_40 AC 127 ms
119,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
s = sum(A)
c = [0]*(2*10**5+1)

for Ai in A:
    c[Ai] += 1

acc = [0]

for i in range(2*10**5+1):
    acc.append(acc[-1]+c[i])

ans = 0

for i in range(1, 2*10**5+1):
    add = s
    j = 0
    
    while i*j<=2*10**5:
        add -= (acc[min(2*10**5+1, i*(j+1))]-acc[i*j])*i*j
        j += 1
    
    ans += add*c[i]

print(ans)
0