結果

問題 No.1233 割り切れない気持ち
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-06 22:17:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 447 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 111,232 KB
最終ジャッジ日時 2024-09-21 04:45:27
合計ジャッジ時間 11,370 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,368 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 49 ms
62,592 KB
testcase_04 AC 51 ms
62,592 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 75 ms
80,640 KB
testcase_08 AC 92 ms
89,984 KB
testcase_09 AC 118 ms
100,880 KB
testcase_10 AC 122 ms
104,320 KB
testcase_11 AC 70 ms
78,080 KB
testcase_12 AC 133 ms
108,280 KB
testcase_13 AC 129 ms
107,904 KB
testcase_14 AC 131 ms
107,904 KB
testcase_15 AC 135 ms
107,776 KB
testcase_16 AC 132 ms
108,336 KB
testcase_17 AC 84 ms
100,608 KB
testcase_18 AC 128 ms
107,904 KB
testcase_19 AC 104 ms
108,160 KB
testcase_20 AC 83 ms
100,096 KB
testcase_21 AC 88 ms
103,424 KB
testcase_22 AC 89 ms
103,896 KB
testcase_23 AC 89 ms
103,040 KB
testcase_24 AC 89 ms
103,680 KB
testcase_25 AC 87 ms
103,424 KB
testcase_26 AC 89 ms
103,296 KB
testcase_27 AC 658 ms
107,508 KB
testcase_28 AC 339 ms
106,880 KB
testcase_29 AC 312 ms
107,392 KB
testcase_30 AC 304 ms
107,136 KB
testcase_31 AC 283 ms
107,136 KB
testcase_32 AC 282 ms
107,264 KB
testcase_33 AC 281 ms
107,520 KB
testcase_34 AC 257 ms
107,648 KB
testcase_35 AC 250 ms
107,464 KB
testcase_36 AC 247 ms
107,264 KB
testcase_37 AC 41 ms
53,376 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

B = [0] * (U + 1)
for a in A:
    B[a] += 1
for i in range(1, U+1):
    B[i] += B[i-1]

G = 0
for a in A:
    F = 0
    for i in range(1, U+1):
        L = i * a - 1
        R = (i + 1) * a - 1
        L = min(U, L)
        R = min(U, R)
        F += i * (B[R] - B[L])
        if R == U:
            break
    G += F * a

print(N * S - G)
0