結果

問題 No.2526 Kth Not-divisible Number
ユーザー siro53siro53
提出日時 2023-11-03 21:33:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 432 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 84,424 KB
最終ジャッジ日時 2023-11-03 21:34:02
合計ジャッジ時間 23,950 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,760 KB
testcase_01 AC 32 ms
53,760 KB
testcase_02 AC 32 ms
53,760 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import lcm


input = sys.stdin.readline


def main():
    A, B, K = map(int, input().split())
    L = lcm(A, B)
    ok, ng = (1 << 80), 0
    while ok - ng > 1:
        mid = (ok + ng) // 2
        if mid - (mid // A) - (mid // B) + (mid // L) >= K:
            ok = mid
        else:
            ng = mid
    
    print(ok)

if __name__ == '__main__':
    T = int(input())
    for _ in range(T):
        main()
0