結果

問題 No.2526 Kth Not-divisible Number
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-11-03 22:21:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-09-25 20:45:51
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def calc(m,a,b,ab):

    return m - m//a - m//b + m//ab
def solve():

    a,b,k = map(int,input().split())
    ab = a*b//(gcd(a,b))

    base = ab - ab//a - ab//b + 1

    l = max((k-1)//base * ab-ab,0)
    assert calc(l,a,b,ab) < k
    r = l + 10*ab

    assert calc(r,a,b,ab) > k

    while r - l > 1:

        m = (r+l)//2

        num = m

        num -= m//a + m//b
        num += m//ab

        if num > k:
            r = m
        else:
            l = m

    assert calc(l,a,b,ab) == k
    while (l%a == 0) or (l%b == 0):
        l -= 1

    return l

t = int(input())
for _ in range(t):
    print(solve())
0