結果

問題 No.1233 割り切れない気持ち
ユーザー ntudantuda
提出日時 2021-10-08 21:34:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,904 KB
実行使用メモリ 111,500 KB
最終ジャッジ日時 2024-07-23 03:31:11
合計ジャッジ時間 6,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
65,536 KB
testcase_01 AC 52 ms
64,512 KB
testcase_02 AC 59 ms
64,384 KB
testcase_03 AC 69 ms
67,968 KB
testcase_04 AC 67 ms
66,048 KB
testcase_05 AC 60 ms
65,536 KB
testcase_06 AC 61 ms
65,408 KB
testcase_07 AC 93 ms
83,840 KB
testcase_08 AC 99 ms
92,160 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 83 ms
79,872 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 85 ms
104,064 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 88 ms
103,296 KB
testcase_21 AC 91 ms
106,496 KB
testcase_22 AC 89 ms
106,436 KB
testcase_23 AC 89 ms
106,368 KB
testcase_24 AC 89 ms
106,496 KB
testcase_25 AC 91 ms
106,240 KB
testcase_26 AC 93 ms
106,752 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 51 ms
64,768 KB
testcase_38 AC 89 ms
103,552 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

print(ans)
0