結果

問題 No.604 誕生日のお小遣い
ユーザー ryusukeryusuke
提出日時 2022-01-27 01:21:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 591 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,416 KB
最終ジャッジ日時 2024-06-06 09:25:17
合計ジャッジ時間 2,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,404 KB
testcase_01 AC 36 ms
52,436 KB
testcase_02 AC 35 ms
52,840 KB
testcase_03 AC 34 ms
53,100 KB
testcase_04 AC 37 ms
51,884 KB
testcase_05 AC 37 ms
52,208 KB
testcase_06 AC 37 ms
53,224 KB
testcase_07 AC 36 ms
52,756 KB
testcase_08 AC 38 ms
53,028 KB
testcase_09 AC 35 ms
52,208 KB
testcase_10 AC 36 ms
53,220 KB
testcase_11 AC 35 ms
52,364 KB
testcase_12 AC 34 ms
52,588 KB
testcase_13 AC 35 ms
53,416 KB
testcase_14 AC 35 ms
53,356 KB
testcase_15 AC 36 ms
51,940 KB
testcase_16 AC 35 ms
53,292 KB
testcase_17 AC 35 ms
52,132 KB
testcase_18 AC 37 ms
52,772 KB
testcase_19 AC 35 ms
52,712 KB
testcase_20 AC 35 ms
52,832 KB
testcase_21 AC 36 ms
52,700 KB
testcase_22 AC 36 ms
52,280 KB
testcase_23 AC 37 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_ok(k: int) -> bool:
    money = k // a * b + (k - k // a)
    if money >= c:
        return True
    else:
        return False

def binary_search(left: int, right: int) -> int:
    while abs(left - right) > 1:
        mid = (left + right) // 2

        if is_ok(mid):
            right = mid
        else:
            left = mid

    return right

a, b, c = map(int, input().split())
print(binary_search(0, 10 ** 18 + 1))

'''
c 円を超えるのが k 歳以上か
k 歳までに b 円がもらえる年数 -> k // a * b
k 歳までに 1 円がもらえる年数 -> (k - k // a)
'''
0