結果

問題 No.91 赤、緑、青の石
ユーザー NiER_Replicant6
提出日時 2018-03-20 16:27:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-24 07:13:47
合計ジャッジ時間 2,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(map(int, input().split()))
def check(mid):
    total = 0
    excess=0
    lack=0
    for i in s:
        if i>=mid:
            excess=0
            lack =0
            excess = (i-mid)//2
        if i<mid:
            excess=0
            lack=0
            lack = i-mid
        total = total+excess+lack
    return total>=0

left = min(s)
right = max(s)
while True:
    mid = (left+right)//2
    if check(mid)==True:
        left = mid
    else:
        right = mid
    if right==mid+1:
        break
    if right==left:
        break
print(mid)
0