結果

問題 No.2526 Kth Not-divisible Number
ユーザー playerplayer
提出日時 2023-12-19 13:46:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 704 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 76,028 KB
最終ジャッジ日時 2023-12-19 13:46:14
合計ジャッジ時間 8,230 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,588 KB
testcase_01 AC 37 ms
53,588 KB
testcase_02 AC 37 ms
53,588 KB
testcase_03 AC 700 ms
76,028 KB
testcase_04 AC 704 ms
76,028 KB
testcase_05 AC 682 ms
76,028 KB
testcase_06 AC 699 ms
76,028 KB
testcase_07 AC 683 ms
76,028 KB
testcase_08 AC 678 ms
76,028 KB
testcase_09 AC 618 ms
76,028 KB
testcase_10 AC 664 ms
76,028 KB
testcase_11 AC 610 ms
76,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

t = int(input())

for i in range(t):
    a,b,k = map(int,input().split())
    g = gcd(a,b)
    n = a//g*b
    right = 10**19
    left = 0
    while abs(right-left) > 1:
        mid = (right+left)//2
        if mid-(mid//a)-(mid//b)+(mid//n) >= k:
            right = mid
        else:
            left = mid
            
    print(right)    
0