結果

問題 No.91 赤、緑、青の石
ユーザー colognecologne
提出日時 2022-01-27 15:59:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 481 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-06-24 07:32:51
合計ジャッジ時間 2,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,264 KB
testcase_01 AC 40 ms
53,180 KB
testcase_02 AC 40 ms
52,140 KB
testcase_03 AC 38 ms
52,668 KB
testcase_04 AC 41 ms
52,488 KB
testcase_05 AC 38 ms
52,364 KB
testcase_06 AC 38 ms
52,688 KB
testcase_07 AC 37 ms
52,196 KB
testcase_08 AC 38 ms
52,132 KB
testcase_09 AC 38 ms
52,252 KB
testcase_10 AC 38 ms
53,180 KB
testcase_11 AC 38 ms
54,028 KB
testcase_12 AC 38 ms
52,724 KB
testcase_13 AC 38 ms
52,416 KB
testcase_14 AC 38 ms
52,364 KB
testcase_15 AC 38 ms
52,408 KB
testcase_16 AC 37 ms
52,476 KB
testcase_17 AC 39 ms
52,212 KB
testcase_18 AC 39 ms
52,472 KB
testcase_19 AC 38 ms
52,596 KB
testcase_20 AC 39 ms
52,704 KB
testcase_21 AC 38 ms
52,772 KB
testcase_22 AC 39 ms
52,520 KB
testcase_23 AC 38 ms
52,204 KB
testcase_24 AC 39 ms
52,632 KB
testcase_25 AC 37 ms
52,756 KB
testcase_26 AC 38 ms
52,696 KB
testcase_27 AC 37 ms
52,984 KB
testcase_28 AC 38 ms
53,236 KB
testcase_29 AC 37 ms
52,332 KB
testcase_30 AC 38 ms
52,332 KB
testcase_31 AC 38 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    r, g, b = sorted(map(int, input().split()))

    ans = r
    g -= r
    b -= r
    r = 0

    lim = min((b-g)//2, g)
    ans += lim
    g -= lim
    b -= 3*lim

    if g == 0:
        ans += b // 5
    else:
        lim = g // 4
        g -= lim * 4
        b -= lim * 4
        ans += lim * 2
        if g >= 1 and b >= 3:
            ans += 1
    print(ans)


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