結果

問題 No.2526 Kth Not-divisible Number
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-11-03 21:39:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 83,652 KB
最終ジャッジ日時 2024-09-25 19:40:21
合計ジャッジ時間 6,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 528 ms
83,652 KB
testcase_04 AC 535 ms
83,004 KB
testcase_05 AC 529 ms
83,144 KB
testcase_06 AC 535 ms
83,392 KB
testcase_07 AC 535 ms
83,128 KB
testcase_08 AC 509 ms
83,060 KB
testcase_09 AC 482 ms
83,144 KB
testcase_10 AC 519 ms
83,132 KB
testcase_11 AC 462 ms
83,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/2526



"""

import math
import sys
from sys import stdin

TT = int(stdin.readline())

ANS = []

for loop in range(TT):

    A,B,K = map(int,stdin.readline().split())
    lcm = A*B // math.gcd(A,B)

    L = -1
    R = 10**19

    while R-L != 1:

        M = (L+R)//2

        now = M
        now -= M // A
        now -= M // B
        now += M // lcm

        if now >= K:
            R = M
        else:
            L = M

    ANS.append(R)

print (*ANS,sep="\n")
0