結果

問題 No.2526 Kth Not-divisible Number
ユーザー Madhav GuptaMadhav Gupta
提出日時 2024-07-13 20:18:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 893 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 77,668 KB
最終ジャッジ日時 2024-07-13 20:18:13
合計ジャッジ時間 8,930 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,500 KB
testcase_01 AC 32 ms
53,172 KB
testcase_02 AC 31 ms
52,872 KB
testcase_03 AC 893 ms
76,304 KB
testcase_04 AC 861 ms
76,496 KB
testcase_05 AC 862 ms
76,252 KB
testcase_06 AC 875 ms
76,228 KB
testcase_07 AC 863 ms
76,788 KB
testcase_08 AC 621 ms
76,596 KB
testcase_09 AC 491 ms
76,480 KB
testcase_10 AC 634 ms
76,468 KB
testcase_11 AC 586 ms
77,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from math import lcm
def input(): return stdin.readline()


def main():
    T = int(input())
    for _ in range(T):
        a, b, k = map(int, input().split())
        l = 1
        r = 3 * 10**18
        while l < r:
            mid = l + (r - l) // 2
            count = mid - mid // a - mid // b + mid // (lcm(a, b))
            if count < k:
                l = mid + 1
            else:
                r = mid
        print(l)

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