結果

問題 No.3681 心の沸騰石
コンテスト
ユーザー ooaiu
提出日時 2026-09-09 18:28:49
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 22 ms / 2,000 ms
+ 162µs
コード長 508 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 62 ms
コンパイル使用メモリ 15,232 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2026-09-09 18:28:51
合計ジャッジ時間 1,892 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
def input(): return sys.stdin.readline().rstrip()
def ii(f=int): return f(input())
def mi(f=int): return map(f, input().split())
def li(f=int): return list(map(f, mi()))


R, P, Q = mi()
A,B,C,D = mi()

def judge(x):
    t = max(0, x - A) + max(0, x - B) + max(0, x - C)
    ok = True
    ok &= D >= t
    ok &= R >= Q * t
    ok &= (R-Q*t) >= P*x
    return ok

ac = 0
wa = 10 ** 18
while wa - ac > 1:
    wj = (ac + wa) // 2
    if judge(wj):
        ac = wj
    else:
        wa = wj

print(ac)
0