結果

問題 No.91 赤、緑、青の石
ユーザー rlangevinrlangevin
提出日時 2023-01-22 02:15:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,101 ms / 5,000 ms
コード長 329 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2024-06-24 07:29:23
合計ジャッジ時間 20,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,051 ms
75,888 KB
testcase_01 AC 722 ms
76,156 KB
testcase_02 AC 1,026 ms
75,928 KB
testcase_03 AC 843 ms
76,068 KB
testcase_04 AC 977 ms
75,932 KB
testcase_05 AC 911 ms
75,860 KB
testcase_06 AC 596 ms
75,932 KB
testcase_07 AC 39 ms
52,248 KB
testcase_08 AC 38 ms
52,128 KB
testcase_09 AC 39 ms
52,156 KB
testcase_10 AC 38 ms
52,484 KB
testcase_11 AC 929 ms
75,872 KB
testcase_12 AC 949 ms
75,976 KB
testcase_13 AC 714 ms
75,728 KB
testcase_14 AC 853 ms
76,040 KB
testcase_15 AC 1,098 ms
75,880 KB
testcase_16 AC 38 ms
53,108 KB
testcase_17 AC 39 ms
52,464 KB
testcase_18 AC 39 ms
51,824 KB
testcase_19 AC 39 ms
53,076 KB
testcase_20 AC 39 ms
53,944 KB
testcase_21 AC 38 ms
53,184 KB
testcase_22 AC 38 ms
52,484 KB
testcase_23 AC 39 ms
52,492 KB
testcase_24 AC 38 ms
52,212 KB
testcase_25 AC 1,101 ms
76,008 KB
testcase_26 AC 1,100 ms
75,900 KB
testcase_27 AC 1,042 ms
76,152 KB
testcase_28 AC 983 ms
75,804 KB
testcase_29 AC 669 ms
75,932 KB
testcase_30 AC 1,026 ms
76,000 KB
testcase_31 AC 1,038 ms
75,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a, b, c):
    L = [a, b, c]
    if min(L) < 0:
        return 0
    L.sort()
    v = (L[-1] - L[0])//3
    L[-1] -= 2 * v
    L[0] += v
    return L

R, G, B = map(int, input().split())
L = [R, G, B]
L.sort()
R, G, B = L
ans = 0
for i in range(B//2 + 1):
    X = f(R + i, G, B - 2 * i)
    ans = max(ans, min(X))
print(ans)
0