結果

問題 No.2526 Kth Not-divisible Number
ユーザー lemondolemondo
提出日時 2023-11-03 22:03:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 76,968 KB
最終ジャッジ日時 2024-09-25 20:22:56
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 472 ms
76,876 KB
testcase_04 AC 464 ms
76,968 KB
testcase_05 AC 469 ms
76,152 KB
testcase_06 AC 458 ms
76,628 KB
testcase_07 AC 468 ms
76,776 KB
testcase_08 AC 442 ms
76,824 KB
testcase_09 AC 389 ms
76,800 KB
testcase_10 AC 448 ms
76,472 KB
testcase_11 AC 381 ms
76,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return list(map(int, input().split()))
sys.setrecursionlimit(10**9)

from math import gcd
T = int(input())
for _ in range(T):
    A, B, K = mapint()
    lc = A*B//gcd(A, B)
    l = 0
    r = 10**18 * 6+1
    while l+1<r:
        tar = (l+r)//2
        cnt = tar - tar//A - tar//B + tar//lc
        if(cnt >= K):
            r = tar
        else:
            l = tar
    print(r)

0