結果

問題 No.91 赤、緑、青の石
ユーザー lllllll88938494
提出日時 2022-03-14 12:44:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-19 22:44:24
合計ジャッジ時間 2,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

r,b,g=map(int,input().split())


def  cal(x):
    fusoku=0
    yojou=0
    for i in [r,b,g]:
        if i - x < 0:
            fusoku -= i - x
        else:
            yojou += (i - x)//2
    if fusoku <= yojou:
        return True
    else:
        return False
low = 0
high = 10**7

while  high-low > 1:
    mid = (low+high)//2
    tt = cal(mid)
    #print(tt,mid,low,high)
    if tt:
        low = mid 
    else:
        high = mid
        
print(low)
    
0