結果

問題 No.2066 Simple Math !
ユーザー tamatotamato
提出日時 2022-09-02 22:28:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,224 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 78,096 KB
最終ジャッジ日時 2024-11-16 04:25:12
合計ジャッジ時間 18,413 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,608 KB
testcase_01 AC 74 ms
76,308 KB
testcase_02 AC 126 ms
76,732 KB
testcase_03 AC 63 ms
73,648 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 816 ms
76,884 KB
testcase_10 AC 813 ms
76,952 KB
testcase_11 AC 813 ms
76,872 KB
testcase_12 AC 814 ms
77,280 KB
testcase_13 AC 821 ms
76,940 KB
testcase_14 AC 783 ms
76,876 KB
testcase_15 AC 785 ms
76,692 KB
testcase_16 AC 792 ms
77,224 KB
testcase_17 AC 792 ms
76,940 KB
testcase_18 AC 783 ms
77,560 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 435 ms
76,820 KB
testcase_25 AC 428 ms
76,768 KB
testcase_26 AC 431 ms
76,940 KB
testcase_27 AC 427 ms
76,972 KB
testcase_28 AC 430 ms
77,072 KB
testcase_29 AC 239 ms
77,264 KB
testcase_30 AC 65 ms
73,236 KB
testcase_31 AC 109 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    from math import gcd
    input = sys.stdin.readline

    # sum([(a * i + b) // m for i in range(n)])
    def floor_sum(n, m, a, b):
        ret = 0
        while True:
            ret += (a // m) * n * (n - 1) // 2 + (b // m) * n
            a %= m
            b %= m
            y = (a * n + b) // m
            x = b - y * m
            if y == 0:
                return ret
            ret += (x // a + n) * y
            n, m, a, b = y, a, m, x % a

    for _ in range(int(input())):
        p, q, k = map(int, input().split())
        g = gcd(p, q)
        p //= g
        q //= g
        if p > q:
            p, q = q, p

        k0 = floor_sum(q, q, p, p) + q - 1
        if k >= k0:
            ans = p * q + (k - k0)
            print(ans * g)
        else:
            ok = p * q
            ng = 0
            mid = (ok + ng) // 2
            while ok - ng > 1:
                x0 = mid // p
                tmp = floor_sum(x0+1, q, p, mid - p * x0) + x0
                if tmp >= k:
                    ok = mid
                else:
                    ng = mid
                mid = (ok + ng) // 2
            print(ok)


if __name__ == '__main__':
    main()
0