結果

問題 No.2526 Kth Not-divisible Number
ユーザー playerplayer
提出日時 2023-12-19 13:46:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 76,460 KB
最終ジャッジ日時 2024-09-27 08:51:59
合計ジャッジ時間 7,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,264 KB
testcase_01 AC 35 ms
52,544 KB
testcase_02 AC 35 ms
52,804 KB
testcase_03 AC 670 ms
76,288 KB
testcase_04 AC 627 ms
76,272 KB
testcase_05 AC 631 ms
76,460 KB
testcase_06 AC 635 ms
76,124 KB
testcase_07 AC 614 ms
76,184 KB
testcase_08 AC 601 ms
76,208 KB
testcase_09 AC 545 ms
76,312 KB
testcase_10 AC 614 ms
76,316 KB
testcase_11 AC 556 ms
76,188 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