結果

問題 No.1233 割り切れない気持ち
ユーザー anagohirameanagohirame
提出日時 2020-09-18 23:51:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 496 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 108,620 KB
最終ジャッジ日時 2024-06-22 17:28:45
合計ジャッジ時間 6,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,248 KB
testcase_01 AC 45 ms
63,204 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 79 ms
102,776 KB
testcase_18 WA -
testcase_19 AC 87 ms
106,844 KB
testcase_20 AC 77 ms
100,216 KB
testcase_21 AC 83 ms
104,452 KB
testcase_22 AC 84 ms
104,184 KB
testcase_23 AC 83 ms
105,108 KB
testcase_24 AC 84 ms
104,028 KB
testcase_25 AC 84 ms
104,528 KB
testcase_26 AC 83 ms
104,360 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 95 ms
107,128 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 89 ms
107,356 KB
testcase_34 WA -
testcase_35 AC 88 ms
105,832 KB
testcase_36 AC 88 ms
105,476 KB
testcase_37 AC 44 ms
61,556 KB
testcase_38 AC 74 ms
100,576 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MAX = 200001
cum = [0 for _ in range(MAX)]
for x in a:
	cum[x] += 1
for i in range(1, MAX):
	cum[i] += cum[i-1]

ans = 0
tot = sum(a)
s = cum[1]
for i in range(2, MAX):
	num = cum[i] - cum[i-1]
	if num == 0:
		continue
	ans += num * s
	tmp = tot - s - i * num
	tmp -= i * (cum[min(MAX-1, 2*i)] - cum[i])
	for j in range(2*i, MAX, i):
		k = min(MAX-1, j+i)
		tmp -= i * (j//i) * (cum[k-1] - cum[j-1])
	ans += num * tmp
	s += i * num
print(ans)
0