結果

問題 No.91 赤、緑、青の石
ユーザー roknaoroknao
提出日時 2019-10-28 18:15:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 53,932 KB
最終ジャッジ日時 2024-06-24 07:21:26
合計ジャッジ時間 2,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 37 ms
52,756 KB
testcase_02 AC 37 ms
53,084 KB
testcase_03 AC 37 ms
52,688 KB
testcase_04 AC 36 ms
52,216 KB
testcase_05 AC 36 ms
52,468 KB
testcase_06 AC 36 ms
52,216 KB
testcase_07 AC 37 ms
52,620 KB
testcase_08 AC 37 ms
52,408 KB
testcase_09 AC 36 ms
52,888 KB
testcase_10 AC 41 ms
52,580 KB
testcase_11 AC 35 ms
53,096 KB
testcase_12 AC 37 ms
53,532 KB
testcase_13 AC 35 ms
53,364 KB
testcase_14 AC 37 ms
52,376 KB
testcase_15 AC 37 ms
53,164 KB
testcase_16 AC 37 ms
52,580 KB
testcase_17 AC 37 ms
53,180 KB
testcase_18 AC 38 ms
52,216 KB
testcase_19 AC 38 ms
53,220 KB
testcase_20 AC 39 ms
53,932 KB
testcase_21 AC 38 ms
52,740 KB
testcase_22 AC 37 ms
52,404 KB
testcase_23 AC 37 ms
51,936 KB
testcase_24 AC 36 ms
52,620 KB
testcase_25 AC 37 ms
52,612 KB
testcase_26 AC 37 ms
53,576 KB
testcase_27 AC 36 ms
52,744 KB
testcase_28 AC 37 ms
53,008 KB
testcase_29 AC 37 ms
52,704 KB
testcase_30 AC 38 ms
53,620 KB
testcase_31 AC 37 ms
52,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def main():
    def isOK(m):
        r = R - m
        g = G - m
        b = B - m
        cnt = 0
        for s in [r, g, b]:
            if s>=0:
                cnt += s//2
        for s in [r, g, b]:
            if s<0:
                cnt += s
        return cnt >= 0


    def binary_search(ok, ng):
        while abs(ok - ng) > 1:
            mid = (ok + ng) // 2
            if isOK(mid):
                ok = mid
            else:
                ng = mid
        return ok
    

    R, G, B = map(int, input().split())

    ok = -1
    ng = 10000010
    print(binary_search(ok, ng))


if __name__ == '__main__':
    main()
0