結果

問題 No.2440 Accuracy of Integer Division Approximate Functions
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-08-18 21:52:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 944 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-06-02 09:59:23
合計ジャッジ時間 8,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 WA -
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 AC 279 ms
77,696 KB
testcase_17 AC 282 ms
78,976 KB
testcase_18 AC 293 ms
78,208 KB
testcase_19 AC 280 ms
79,232 KB
testcase_20 AC 288 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))


def floor_sum(n,m,a,b):
    res=0
    if a>=m:
        res+=n*(n-1)//2*(a//m)
        a%=m
    if b>=m:
        res+=n*(b//m)
        b%=m
    last=a*(n-1)+b
    if last>=m:
        lastdiv=last//m
        lastmod=last%m
        res+=lastdiv+floor_sum(lastdiv,a,m,lastmod)
    return res
        

def main():
    q=int(input())
    for _ in range(q):
        n,d,m,s=read_values()
        l=0
        r=n+1
        ts=2.0**s
        while l+1<r:
            mid=(l+r)//2
            if abs(mid/d-m*mid/ts) < 1.0:
                l=mid
            else:
                r=mid
        right=int(l)
        right=min(right,n)
        ans=right
        if ts > n * m:
            ans=d-1
        else:
            ts=2**s
            ans-=abs(floor_sum(right,d,1,1)-floor_sum(right,ts,m,m))
        print(ans)
if __name__ == "__main__":
    main()
0