結果

問題 No.2526 Kth Not-divisible Number
ユーザー rlangevinrlangevin
提出日時 2023-11-03 21:27:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-25 19:08:07
合計ジャッジ時間 8,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def check(m, a, b):
    val = m
    val -= m // a + m // b
    lcm = a * b // gcd(a, b)
    return val + m // lcm
    

T = int(input())
for _ in range(T):
    A, B, K = map(int, input().split())
    yes = 3 * K
    no = 0
    while yes - no != 1:
        mid = (yes + no)//2
        if check(mid, A, B) >= K:
            yes = mid
        else:
            no = mid
    print(yes)
0