結果

問題 No.1233 割り切れない気持ち
ユーザー ntudantuda
提出日時 2021-10-08 22:52:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 3,153 ms
コード長 479 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 111,132 KB
最終ジャッジ日時 2024-07-23 06:01:38
合計ジャッジ時間 5,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
65,680 KB
testcase_01 AC 49 ms
65,944 KB
testcase_02 AC 56 ms
65,208 KB
testcase_03 AC 64 ms
68,708 KB
testcase_04 AC 63 ms
68,520 KB
testcase_05 AC 55 ms
65,452 KB
testcase_06 AC 56 ms
66,956 KB
testcase_07 AC 86 ms
84,128 KB
testcase_08 AC 97 ms
92,428 KB
testcase_09 AC 117 ms
104,032 KB
testcase_10 AC 121 ms
107,224 KB
testcase_11 AC 86 ms
82,832 KB
testcase_12 AC 133 ms
110,784 KB
testcase_13 AC 127 ms
110,912 KB
testcase_14 AC 129 ms
111,096 KB
testcase_15 AC 128 ms
111,132 KB
testcase_16 AC 127 ms
111,088 KB
testcase_17 AC 81 ms
104,596 KB
testcase_18 AC 131 ms
111,036 KB
testcase_19 AC 88 ms
109,068 KB
testcase_20 AC 78 ms
103,900 KB
testcase_21 AC 87 ms
107,080 KB
testcase_22 AC 86 ms
107,260 KB
testcase_23 AC 87 ms
107,444 KB
testcase_24 AC 87 ms
107,460 KB
testcase_25 AC 88 ms
107,588 KB
testcase_26 AC 87 ms
107,696 KB
testcase_27 AC 97 ms
110,256 KB
testcase_28 AC 96 ms
110,152 KB
testcase_29 AC 95 ms
110,296 KB
testcase_30 AC 94 ms
110,472 KB
testcase_31 AC 95 ms
110,280 KB
testcase_32 AC 96 ms
110,304 KB
testcase_33 AC 95 ms
110,644 KB
testcase_34 AC 95 ms
109,964 KB
testcase_35 AC 94 ms
110,556 KB
testcase_36 AC 93 ms
110,364 KB
testcase_37 AC 51 ms
65,580 KB
testcase_38 AC 81 ms
104,256 KB
testcase_39 AC 116 ms
109,516 KB
testcase_40 AC 117 ms
109,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
M = 200000
D = [0] * (M + 1)
DS = [0] * (M + 1)
S = [0] * (M + 1)
for a in A:
    D[a] += 1

for i in range(1, M+1):
    S[i] = S[i - 1] + i * D[i]
    DS[i] = DS[i - 1] + D[i]

ans = 0
for i in range(2, M+1):
    if D[i] > 0:
        ans += S[i - 1] * D[i]
        for j in range(1, M // i + 1):
            ans += D[i] * (S[min(i * (j + 1) - 1, M)] - S[i * j] - i * j * (DS[min(i * (j + 1) - 1, M)] - DS[i * j]))

print(ans)
0