結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
63,460 KB
testcase_01 AC 42 ms
62,196 KB
testcase_02 AC 55 ms
64,532 KB
testcase_03 AC 65 ms
65,684 KB
testcase_04 AC 66 ms
65,672 KB
testcase_05 AC 55 ms
63,280 KB
testcase_06 AC 58 ms
64,656 KB
testcase_07 AC 90 ms
81,204 KB
testcase_08 AC 99 ms
89,720 KB
testcase_09 AC 128 ms
101,356 KB
testcase_10 AC 123 ms
104,400 KB
testcase_11 AC 87 ms
80,100 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 73 ms
102,596 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 73 ms
100,788 KB
testcase_21 AC 79 ms
104,228 KB
testcase_22 AC 78 ms
103,912 KB
testcase_23 AC 83 ms
104,104 KB
testcase_24 AC 81 ms
104,024 KB
testcase_25 AC 81 ms
103,856 KB
testcase_26 AC 77 ms
103,912 KB
testcase_27 AC 86 ms
107,296 KB
testcase_28 AC 88 ms
106,968 KB
testcase_29 AC 89 ms
107,260 KB
testcase_30 AC 86 ms
107,016 KB
testcase_31 AC 90 ms
107,504 KB
testcase_32 AC 87 ms
107,132 KB
testcase_33 AC 91 ms
107,192 KB
testcase_34 AC 87 ms
106,956 KB
testcase_35 AC 86 ms
105,696 KB
testcase_36 AC 89 ms
105,812 KB
testcase_37 AC 47 ms
62,420 KB
testcase_38 WA -
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
	for j in range(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