結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,264 KB
testcase_01 AC 40 ms
53,076 KB
testcase_02 AC 39 ms
52,532 KB
testcase_03 AC 1,018 ms
76,392 KB
testcase_04 AC 998 ms
76,488 KB
testcase_05 AC 964 ms
76,084 KB
testcase_06 AC 1,005 ms
76,372 KB
testcase_07 AC 980 ms
76,236 KB
testcase_08 AC 702 ms
76,352 KB
testcase_09 AC 564 ms
76,240 KB
testcase_10 AC 756 ms
76,748 KB
testcase_11 AC 664 ms
77,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import math
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 // (a * b // math.gcd(a, b))
            if count < k:
                l = mid + 1
            else:
                r = mid
        print(l)

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