結果

問題 No.91 赤、緑、青の石
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-19 21:39:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-24 06:50:09
合計ジャッジ時間 2,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(r, g, b):
    rgb = [r, g, b]
    rgb.sort()
    r, g, b = rgb
    s = r
    g -= r
    b -= r
    if b >= g * 3:
        s += g
        b -= g * 3
        s += b // 5
        return s
    r2 = (b - g) // 2
    s += r2
    g -= r2
    b -= r2 * 3
    if g == b:
        n = g//4
        s += n*2
        g -= n*4
        if g == 3:
            s += 1
        return s
    if g + 1 == b:
        n = g//4
        s += n*2
        g -= n*4
        b -= n*4
        if g == 2 or g == 3:
            s += 1
        return s
        
 
print(solve(R, G, B))
0