結果

問題 No.604 誕生日のお小遣い
ユーザー wajima_wataruwajima_wataru
提出日時 2017-12-15 17:33:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 366 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-21 19:21:06
合計ジャッジ時間 1,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

A, B, C = map(int, input().split())


def total(n):
    return (n // A) * B + n - (n // A)

low = 0
high = 1000000000000000000
n = (low + high) // 2

while True:
    if total(n) >= C and total(n - 1) < C:
        print(n)
        sys.exit()
    elif total(n) > C:
        high = n - 1
    elif total(n) < C:
        low = n + 1
    n = (low + high) // 2
0