結果

問題 No.91 赤、緑、青の石
ユーザー c-yanc-yan
提出日時 2020-12-27 00:51:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 75,948 KB
最終ジャッジ日時 2024-06-24 07:30:36
合計ジャッジ時間 7,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
75,348 KB
testcase_01 AC 268 ms
75,360 KB
testcase_02 AC 184 ms
75,532 KB
testcase_03 AC 285 ms
75,616 KB
testcase_04 AC 161 ms
75,280 KB
testcase_05 AC 328 ms
75,616 KB
testcase_06 AC 109 ms
75,332 KB
testcase_07 AC 40 ms
51,876 KB
testcase_08 AC 38 ms
52,460 KB
testcase_09 AC 39 ms
52,084 KB
testcase_10 AC 40 ms
53,572 KB
testcase_11 AC 138 ms
75,268 KB
testcase_12 AC 326 ms
75,236 KB
testcase_13 AC 353 ms
75,348 KB
testcase_14 AC 241 ms
75,232 KB
testcase_15 AC 334 ms
75,208 KB
testcase_16 AC 39 ms
52,876 KB
testcase_17 AC 38 ms
52,488 KB
testcase_18 AC 39 ms
52,680 KB
testcase_19 AC 38 ms
53,212 KB
testcase_20 AC 39 ms
52,372 KB
testcase_21 AC 39 ms
52,008 KB
testcase_22 AC 38 ms
51,876 KB
testcase_23 AC 38 ms
53,004 KB
testcase_24 AC 40 ms
52,460 KB
testcase_25 AC 548 ms
75,884 KB
testcase_26 AC 497 ms
75,720 KB
testcase_27 AC 39 ms
52,888 KB
testcase_28 AC 69 ms
75,700 KB
testcase_29 AC 97 ms
75,948 KB
testcase_30 AC 371 ms
75,232 KB
testcase_31 AC 478 ms
75,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a = [R, G, B]


def is_ok(n):
    m = 0
    p = 0
    for x in a:
        if x - n >= 0:
            p += (x - n) // 2
        else:
            m += n - x
    return p >= m


for i in range(min(a), max(a) + 2):
    if is_ok(i):
        continue
    print(i - 1)
    break
0