結果

問題 No.1233 割り切れない気持ち
ユーザー anagohirameanagohirame
提出日時 2020-09-18 23:58:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 3,153 ms
コード長 430 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 108,260 KB
最終ジャッジ日時 2024-06-22 19:25:57
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,096 KB
testcase_01 AC 49 ms
62,080 KB
testcase_02 AC 59 ms
64,036 KB
testcase_03 AC 71 ms
66,172 KB
testcase_04 AC 68 ms
65,664 KB
testcase_05 AC 56 ms
63,892 KB
testcase_06 AC 62 ms
65,096 KB
testcase_07 AC 93 ms
80,604 KB
testcase_08 AC 102 ms
89,336 KB
testcase_09 AC 128 ms
101,128 KB
testcase_10 AC 136 ms
103,940 KB
testcase_11 AC 92 ms
79,856 KB
testcase_12 AC 131 ms
108,112 KB
testcase_13 AC 139 ms
108,260 KB
testcase_14 AC 135 ms
107,692 KB
testcase_15 AC 137 ms
108,020 KB
testcase_16 AC 148 ms
108,020 KB
testcase_17 AC 83 ms
101,400 KB
testcase_18 AC 153 ms
107,904 KB
testcase_19 AC 91 ms
106,312 KB
testcase_20 AC 81 ms
99,916 KB
testcase_21 AC 90 ms
104,180 KB
testcase_22 AC 89 ms
104,360 KB
testcase_23 AC 84 ms
103,712 KB
testcase_24 AC 90 ms
103,640 KB
testcase_25 AC 89 ms
103,772 KB
testcase_26 AC 88 ms
104,660 KB
testcase_27 AC 97 ms
107,312 KB
testcase_28 AC 96 ms
107,024 KB
testcase_29 AC 97 ms
106,912 KB
testcase_30 AC 94 ms
107,440 KB
testcase_31 AC 98 ms
107,272 KB
testcase_32 AC 92 ms
107,372 KB
testcase_33 AC 89 ms
106,972 KB
testcase_34 AC 92 ms
106,960 KB
testcase_35 AC 85 ms
105,832 KB
testcase_36 AC 84 ms
105,752 KB
testcase_37 AC 45 ms
61,932 KB
testcase_38 AC 77 ms
101,132 KB
testcase_39 AC 125 ms
106,648 KB
testcase_40 AC 130 ms
106,444 KB
権限があれば一括ダウンロードができます

ソースコード

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):
		tmp -= i * (j//i) * (cum[min(j+i, MAX)-1] - cum[j-1])
	ans += num * tmp
	s += i * num
print(ans)
0