結果

問題 No.2440 Accuracy of Integer Division Approximate Functions
ユーザー hiro1729hiro1729
提出日時 2023-09-01 18:36:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-11 02:37:58
合計ジャッジ時間 5,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 232 ms
10,752 KB
testcase_02 AC 231 ms
10,624 KB
testcase_03 AC 228 ms
10,624 KB
testcase_04 AC 229 ms
10,624 KB
testcase_05 AC 237 ms
10,624 KB
testcase_06 AC 177 ms
10,752 KB
testcase_07 AC 178 ms
10,624 KB
testcase_08 AC 187 ms
10,752 KB
testcase_09 AC 175 ms
10,624 KB
testcase_10 AC 182 ms
10,752 KB
testcase_11 AC 235 ms
10,624 KB
testcase_12 AC 236 ms
10,624 KB
testcase_13 AC 231 ms
10,624 KB
testcase_14 AC 230 ms
10,624 KB
testcase_15 AC 231 ms
10,624 KB
testcase_16 AC 139 ms
10,624 KB
testcase_17 AC 139 ms
10,624 KB
testcase_18 AC 141 ms
10,752 KB
testcase_19 AC 140 ms
10,624 KB
testcase_20 AC 138 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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