結果

問題 No.2526 Kth Not-divisible Number
ユーザー miya145592miya145592
提出日時 2023-11-03 22:09:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 87,280 KB
最終ジャッジ日時 2024-09-25 20:33:57
合計ジャッジ時間 6,464 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,468 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 520 ms
86,892 KB
testcase_04 AC 522 ms
86,704 KB
testcase_05 AC 514 ms
86,912 KB
testcase_06 AC 523 ms
87,008 KB
testcase_07 AC 519 ms
86,772 KB
testcase_08 AC 495 ms
86,912 KB
testcase_09 AC 462 ms
87,040 KB
testcase_10 AC 511 ms
87,168 KB
testcase_11 AC 459 ms
87,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
input = sys.stdin.readline
T = int(input())
ABK = [list(map(int, input().split())) for _ in range(T)]
for a, b, k in ABK:
    g = math.gcd(a, b)
    l = a//g*b

    left = 0
    right = 10**19
    while right-left>1:
        mid = (left+right)//2
        cnt = mid//a + mid//b - mid//(l)
        if mid-cnt>=k:
            right = mid
        else:
            left = mid
    print(right)
0