結果

問題 No.2526 Kth Not-divisible Number
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-03 20:16:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 988 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 83,420 KB
最終ジャッジ日時 2024-08-03 20:16:51
合計ジャッジ時間 7,307 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,516 KB
testcase_01 WA -
testcase_02 AC 35 ms
52,932 KB
testcase_03 AC 560 ms
82,156 KB
testcase_04 AC 586 ms
82,364 KB
testcase_05 AC 561 ms
82,632 KB
testcase_06 AC 592 ms
83,092 KB
testcase_07 AC 567 ms
82,528 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 457 ms
81,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/573

def calc_gcd(A, B):
    """
    正の整数A, Bの最大公約数を計算する
    """
    a = max(A, B)
    b = min(A, B)
    while a % b > 0:
        c = a % b
        a = b
        b = c
    return b

def func(value, A, B, lcm, K):
    a = value // A
    b = value // B
    l = value // lcm
    x = value - a - b + l
    return x >= K


def solve(A, B, K):
    gcd = calc_gcd(A, B)
    lcm = (A // gcd) * B

    low = 1
    high = 2 * (10 ** 18)
    while high - low > 1:
        mid = (high + low) // 2
        if func(mid, A, B, lcm, K):
            high = mid
        else:
            low = mid
    if func(low ,A, B, lcm, K):
        return low
    else:
        return high




def main():
    T = int(input())
    answers = []
    for _ in range(T):
        A, B, K = map(int, input().split())
        ans = solve(A, B, K)
        answers.append(ans)

    for ans in answers:
        print(ans)


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