結果

問題 No.91 赤、緑、青の石
ユーザー koyoprokoyopro
提出日時 2015-09-20 20:36:42
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 628 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 13,088 KB
最終ジャッジ日時 2024-07-19 08:22:15
合計ジャッジ時間 29,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,810 ms
6,816 KB
testcase_01 AC 1,864 ms
6,816 KB
testcase_02 AC 142 ms
6,940 KB
testcase_03 AC 2,291 ms
6,940 KB
testcase_04 AC 951 ms
6,940 KB
testcase_05 AC 2,139 ms
6,944 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 9 ms
6,940 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 77 ms
6,940 KB
testcase_12 AC 1,575 ms
6,944 KB
testcase_13 AC 3,880 ms
6,944 KB
testcase_14 AC 857 ms
6,944 KB
testcase_15 AC 3,051 ms
6,944 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 9 ms
6,940 KB
testcase_18 AC 9 ms
6,944 KB
testcase_19 AC 9 ms
6,940 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 10 ms
6,940 KB
testcase_23 AC 11 ms
6,940 KB
testcase_24 AC 10 ms
6,944 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

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

# 普通に作れる数
minc = min(R, G, B)

R -= minc
G -= minc
B -= minc

# 2番目の多いやつを基準に考える
l = sorted([R, G, B])
while True:
    if l[1] > 0:
        # 2種類ある場合
        amari = l[2] - l[1]
        add = max(min(l[1], amari/2), 1)
        if l[2]-add*3 < 0: break
        minc += add
        l[1] -= add
        l[2] -= add*3
        #if sum(l) <= 4: break
    else:
        # 1種類しか残ってない場合
        add = l[2] / 5
        minc += add
        l[2] -= add*5
        break
    l = sorted(l)

print minc
0