結果

問題 No.1350 2019-6problem
ユーザー 👑 KazunKazun
提出日時 2021-04-30 03:03:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-07-18 02:55:15
合計ジャッジ時間 1,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,936 KB
testcase_01 AC 38 ms
52,804 KB
testcase_02 AC 34 ms
53,396 KB
testcase_03 AC 36 ms
53,448 KB
testcase_04 AC 33 ms
53,176 KB
testcase_05 AC 32 ms
52,192 KB
testcase_06 AC 33 ms
53,792 KB
testcase_07 AC 33 ms
53,660 KB
testcase_08 AC 34 ms
52,656 KB
testcase_09 AC 32 ms
52,408 KB
testcase_10 AC 32 ms
53,756 KB
testcase_11 AC 31 ms
52,416 KB
testcase_12 AC 34 ms
53,600 KB
testcase_13 AC 30 ms
53,156 KB
testcase_14 AC 32 ms
53,816 KB
testcase_15 AC 33 ms
53,028 KB
testcase_16 AC 33 ms
52,824 KB
testcase_17 AC 33 ms
52,408 KB
testcase_18 AC 33 ms
53,064 KB
testcase_19 AC 34 ms
52,464 KB
testcase_20 AC 34 ms
52,320 KB
testcase_21 AC 32 ms
52,372 KB
testcase_22 AC 32 ms
53,276 KB
testcase_23 AC 34 ms
52,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def General_Binary_Increase_Search_Integer(L,R,cond,default=None):
    """条件式が単調増加であるとき, 整数上で二部探索を行う.
    L: 解の下限
    R: 解の上限
    cond: 条件(1変数関数, 広義単調増加を満たす)
    default: Lで条件を満たさないときの返り値
    """
    if not(cond(R)):
        return default

    if cond(L):
        return L

    R+=1
    while R-L>1:
        C=L+(R-L)//2
        if cond(C):
            R=C
        else:
            L=C
    return R
#================================================
from math import gcd

A,B,K=map(int,input().split())
L=A*B//gcd(A,B)
check=lambda x:(x//A+x//B-x//L)>=K

print(General_Binary_Increase_Search_Integer(1,A*K,check))
0