結果

問題 No.2440 Accuracy of Integer Division Approximate Functions
ユーザー hiro1729hiro1729
提出日時 2023-08-27 09:07:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-08 04:48:12
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 216 ms
10,752 KB
testcase_02 AC 214 ms
10,752 KB
testcase_03 AC 214 ms
10,752 KB
testcase_04 AC 207 ms
10,752 KB
testcase_05 AC 216 ms
10,752 KB
testcase_06 AC 159 ms
10,880 KB
testcase_07 AC 171 ms
10,752 KB
testcase_08 AC 159 ms
10,880 KB
testcase_09 AC 162 ms
10,752 KB
testcase_10 AC 168 ms
10,752 KB
testcase_11 AC 216 ms
10,752 KB
testcase_12 AC 221 ms
10,880 KB
testcase_13 AC 219 ms
10,752 KB
testcase_14 AC 223 ms
10,752 KB
testcase_15 AC 218 ms
10,752 KB
testcase_16 AC 137 ms
10,752 KB
testcase_17 AC 126 ms
10,752 KB
testcase_18 AC 127 ms
10,752 KB
testcase_19 AC 124 ms
10,752 KB
testcase_20 AC 128 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def floor_sum(n, m, a, b):
	ans = 0
	while True:
		if a >= m:
			ans += (n * (n - 1) >> 1) * (a // m)
			a %= m
		if b >= m:
			ans += n * (b // m)
			b %= m
		y = a * n + b
		if y < m:
			return ans
		n, b, m, a = y // m, y % m, a, m
for _ in range(int(input())):
	n, d, m, s = map(int, input().split())
	p, dm = 1 << s, d * m
	if p != dm:
		n = min(n, d * p // abs(dm - p))
		n -= abs(floor_sum(n + 1, p, m, 0) - floor_sum(n + 1, d, 1, 0))
	print(n)
0