結果

問題 No.1233 割り切れない気持ち
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-06 22:18:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 3,153 ms
コード長 475 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-09-21 04:45:36
合計ジャッジ時間 5,786 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 41 ms
53,968 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 48 ms
61,184 KB
testcase_04 AC 47 ms
61,568 KB
testcase_05 AC 38 ms
53,888 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 90 ms
88,912 KB
testcase_08 AC 105 ms
97,792 KB
testcase_09 AC 137 ms
101,888 KB
testcase_10 AC 144 ms
104,448 KB
testcase_11 AC 84 ms
84,736 KB
testcase_12 AC 166 ms
108,160 KB
testcase_13 AC 156 ms
108,032 KB
testcase_14 AC 155 ms
108,160 KB
testcase_15 AC 159 ms
108,576 KB
testcase_16 AC 160 ms
108,244 KB
testcase_17 AC 87 ms
102,564 KB
testcase_18 AC 160 ms
111,872 KB
testcase_19 AC 106 ms
108,436 KB
testcase_20 AC 90 ms
102,784 KB
testcase_21 AC 99 ms
105,340 KB
testcase_22 AC 94 ms
105,088 KB
testcase_23 AC 99 ms
105,216 KB
testcase_24 AC 99 ms
105,356 KB
testcase_25 AC 100 ms
104,960 KB
testcase_26 AC 96 ms
105,216 KB
testcase_27 AC 111 ms
107,776 KB
testcase_28 AC 106 ms
107,392 KB
testcase_29 AC 107 ms
107,392 KB
testcase_30 AC 103 ms
107,392 KB
testcase_31 AC 106 ms
107,136 KB
testcase_32 AC 108 ms
107,472 KB
testcase_33 AC 105 ms
107,596 KB
testcase_34 AC 104 ms
107,264 KB
testcase_35 AC 110 ms
107,392 KB
testcase_36 AC 110 ms
107,392 KB
testcase_37 AC 41 ms
53,376 KB
testcase_38 AC 98 ms
105,984 KB
testcase_39 AC 137 ms
106,368 KB
testcase_40 AC 136 ms
106,496 KB
権限があれば一括ダウンロードができます

ソースコード

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, num in Counter(A).items():
    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 * num

print(N * S - G)
0