結果

問題 No.2526 Kth Not-divisible Number
ユーザー wgrapewgrape
提出日時 2023-12-13 09:50:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 76,636 KB
最終ジャッジ日時 2024-09-27 05:16:40
合計ジャッジ時間 10,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,316 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,008 KB
testcase_03 AC 1,037 ms
76,488 KB
testcase_04 AC 1,016 ms
76,296 KB
testcase_05 AC 1,022 ms
76,476 KB
testcase_06 AC 1,039 ms
76,128 KB
testcase_07 AC 1,025 ms
76,556 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
import math
def is_ok(x,a,b,k): # xに対して、aでもbでも割り切れない数がk個以上存在すればTrue
    g = math.gcd(a, b)
    L = a // g * b
    cnt = x - (x // a) - (x // b) + (x // L)
    return cnt >= k

for _ in range(T):
    A,B,K = map(int,input().split())
    ok = K * 2
    ng = 0
    while abs(ok - ng) > 1:
        mid = abs(ok + ng) // 2
        if is_ok(mid, A, B, K):
            ok = mid
        else:
            ng = mid
    print(ok)
0