結果

問題 No.91 赤、緑、青の石
ユーザー maspy
提出日時 2020-02-02 22:25:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 637 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-18 21:29:50
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

R,G,B = sorted(map(int,read().split()))

answer = R
G,B = G-R,B-R

def test(x,G,B):
    # x個作ることが可能である
    # まずは、G,B ともに Rに変換する場合
    R = (G-x)//2 + (B-x)//2
    if R >= x:
        return True
    # BからR,Gに変換する場合
    B -= 2*x
    B -= max(0,2 * (x-G))
    return B >= x

left = 0 # 可能
right = 10 ** 18
while left + 1 < right:
    x = (left + right) // 2
    if test(x,G,B):
        left = x
    else:
        right = x

answer += left
print(answer)
0