結果

問題 No.2526 Kth Not-divisible Number
ユーザー komkompikomkompi
提出日時 2023-11-03 22:03:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,106 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 76,376 KB
最終ジャッジ日時 2024-09-25 20:23:48
合計ジャッジ時間 10,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import math

T=int(input())

for _ in range(T):
    A,B,K=map(int,input().split())
    
    high=3*10**18
    low=-1
    
    while high-low>1:
        middle=(high+low)//2
        
        AB=A*B//math.gcd(A,B)
        yaku_A=middle//A
        yaku_B=middle//B
        yaku_AB=middle//(AB)
        
        all_unyaku=middle-yaku_A-yaku_B+yaku_AB
        
        if all_unyaku>=K:
            high=middle
        else:
            low=middle
    
    print(high)
    





0