結果

問題 No.2066 Simple Math !
ユーザー rlangevinrlangevin
提出日時 2024-05-09 12:26:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,082 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-05-09 12:26:21
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,600 KB
testcase_01 AC 518 ms
77,568 KB
testcase_02 AC 671 ms
78,244 KB
testcase_03 AC 312 ms
76,288 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd

# https://github.com/shakayami/ACL-for-python/blob/master/math.py
# \sum_{i=0}^{n-1} (a * i + b)//m
def floor_sum(n,m,a,b):
    ans=0
    if a<0:
        a2=a%m
        return floor_sum(n,m,a2,b)-n*(n-1)*((a2-a)//m)//2
    if b<0:
        b2=b%m
        return floor_sum(n,m,a,b2)-n*((b2-b)//m)
    if a>=m:
        ans+=(n-1)*n*(a//m)//2
        a%=m
    if b>=m:
        ans+=n*(b//m)
        b%=m
    y_max=(a*n+b)//m
    x_max=(y_max*m-b)
    if y_max==0:
        return ans
    ans+=(n-(x_max+a-1)//a)*y_max
    ans+=floor_sum(y_max,a,m,(a-x_max%a)%a)
    return ans

def BinarySearch(yes, no, P, Q, K):
    while abs(yes - no) != 1:
        mid = (yes + no)//2
        num = min(P, mid//Q + 1)
        if floor_sum(num, P, -Q, mid) + num - 1 >= K:
            yes = mid
        else:
            no = mid
    return yes


T = int(input())
for _ in range(T):
    P, Q, K = map(int, input().split())
    g = gcd(P, Q)
    P //= g
    Q //= g
    yes = 10 ** 20
    no = -1
    print(BinarySearch(yes, no, P, Q, K) * g)
0