結果

問題 No.91 赤、緑、青の石
コンテスト
ユーザー lllllll88938494
提出日時 2022-03-14 12:44:35
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 93 ms / 5,000 ms
+ 579µs
コード長 461 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 286 ms
コンパイル使用メモリ 21,408 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2026-07-19 05:28:41
合計ジャッジ時間 5,162 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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