結果

問題 No.1233 割り切れない気持ち
ユーザー neterukunneterukun
提出日時 2020-09-18 23:10:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 3,153 ms
コード長 730 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,568 KB
最終ジャッジ日時 2024-06-22 19:21:46
合計ジャッジ時間 7,833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
78,768 KB
testcase_01 AC 110 ms
78,760 KB
testcase_02 AC 107 ms
79,104 KB
testcase_03 AC 110 ms
79,104 KB
testcase_04 AC 110 ms
79,228 KB
testcase_05 AC 108 ms
78,812 KB
testcase_06 AC 108 ms
78,720 KB
testcase_07 AC 115 ms
85,180 KB
testcase_08 AC 122 ms
90,752 KB
testcase_09 AC 143 ms
103,092 KB
testcase_10 AC 152 ms
105,764 KB
testcase_11 AC 125 ms
84,480 KB
testcase_12 AC 150 ms
109,440 KB
testcase_13 AC 152 ms
109,204 KB
testcase_14 AC 153 ms
109,268 KB
testcase_15 AC 155 ms
109,276 KB
testcase_16 AC 149 ms
109,456 KB
testcase_17 AC 142 ms
106,688 KB
testcase_18 AC 146 ms
109,568 KB
testcase_19 AC 144 ms
109,440 KB
testcase_20 AC 143 ms
106,876 KB
testcase_21 AC 148 ms
107,984 KB
testcase_22 AC 144 ms
107,812 KB
testcase_23 AC 144 ms
108,060 KB
testcase_24 AC 143 ms
108,188 KB
testcase_25 AC 144 ms
108,060 KB
testcase_26 AC 144 ms
108,032 KB
testcase_27 AC 149 ms
108,588 KB
testcase_28 AC 154 ms
108,452 KB
testcase_29 AC 154 ms
108,396 KB
testcase_30 AC 153 ms
108,432 KB
testcase_31 AC 148 ms
109,076 KB
testcase_32 AC 149 ms
108,624 KB
testcase_33 AC 147 ms
108,496 KB
testcase_34 AC 151 ms
108,408 KB
testcase_35 AC 147 ms
108,428 KB
testcase_36 AC 145 ms
108,708 KB
testcase_37 AC 107 ms
79,188 KB
testcase_38 AC 136 ms
107,136 KB
testcase_39 AC 141 ms
108,200 KB
testcase_40 AC 141 ms
108,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))


length = 2 * 10 ** 5 + 10
imos = [0] * length
vals = [0] * length
for i in range(n):
    vals[a[i]] += 1

for diff in range(1, length):
    cnt = vals[diff]
    for i in range(0, length, diff):
        if i + 1 < length:
            imos[i + 1] += 1 * cnt
        if i + diff < length:
            imos[i + diff] -= 1 * cnt


for i in range(length - 1):
    imos[i + 1] += imos[i]

for diff in range(1, length):
    cnt = vals[diff]
    for i in range(0, length, diff):
        if i + diff < length:
            imos[i + diff] -= (diff - 1) * cnt

for i in range(length - 1):
    imos[i + 1] += imos[i]

ans = 0
for i in range(length):
    ans += imos[i] * vals[i]
print(ans)
0