結果

問題 No.1350 2019-6problem
ユーザー flippergoflippergo
提出日時 2024-10-27 22:57:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,664 KB
最終ジャッジ日時 2024-10-27 22:57:33
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,328 KB
testcase_01 AC 38 ms
52,468 KB
testcase_02 AC 37 ms
53,412 KB
testcase_03 AC 37 ms
52,824 KB
testcase_04 AC 38 ms
52,204 KB
testcase_05 AC 37 ms
53,448 KB
testcase_06 AC 38 ms
53,372 KB
testcase_07 AC 37 ms
52,064 KB
testcase_08 AC 37 ms
52,124 KB
testcase_09 AC 37 ms
52,432 KB
testcase_10 AC 38 ms
52,268 KB
testcase_11 AC 38 ms
53,492 KB
testcase_12 AC 38 ms
51,940 KB
testcase_13 AC 37 ms
53,252 KB
testcase_14 AC 38 ms
52,320 KB
testcase_15 AC 37 ms
53,500 KB
testcase_16 AC 38 ms
53,536 KB
testcase_17 AC 37 ms
52,820 KB
testcase_18 AC 37 ms
52,272 KB
testcase_19 AC 37 ms
52,892 KB
testcase_20 AC 37 ms
52,276 KB
testcase_21 AC 38 ms
52,752 KB
testcase_22 AC 37 ms
52,708 KB
testcase_23 AC 37 ms
53,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,K = map(int,input().split())
def gcd(a,b):
    if b==0:return a
    return gcd(b,a%b)
d = gcd(A,B)
C = A*B//d
high = 2*K
low = 0
while high-low>1:
    mid = (high+low)//2
    a = A*mid
    na = mid
    nb = a//B
    nc = a//C
    k = na+nb-nc
    if k>=K:
        high = mid
    else:
        low = mid
ka = high
high = 2*K
low = 0
while high-low>1:
    mid = (high+low)//2
    b = B*mid
    na = b//A
    nb = mid
    nc = b//C
    k = na+nb-nc
    if k>=K:
        high = mid
    else:
        low = mid
kb = high
a = A*ka
na = ka
nb = a//B
nc = a//C
if na+nb-nc==K:
    print(a)
else:
    print(B*kb)
0