結果

問題 No.91 赤、緑、青の石
ユーザー rlangevinrlangevin
提出日時 2023-01-22 02:14:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,636 KB
実行使用メモリ 76,016 KB
最終ジャッジ日時 2024-06-24 07:28:20
合計ジャッジ時間 19,614 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,020 ms
75,916 KB
testcase_01 AC 645 ms
75,956 KB
testcase_02 AC 938 ms
75,600 KB
testcase_03 AC 801 ms
75,660 KB
testcase_04 AC 937 ms
75,784 KB
testcase_05 AC 849 ms
75,756 KB
testcase_06 AC 583 ms
75,660 KB
testcase_07 AC 38 ms
52,644 KB
testcase_08 AC 37 ms
51,900 KB
testcase_09 AC 37 ms
52,284 KB
testcase_10 AC 39 ms
52,564 KB
testcase_11 AC 862 ms
75,784 KB
testcase_12 AC 880 ms
75,788 KB
testcase_13 AC 641 ms
75,664 KB
testcase_14 AC 825 ms
75,748 KB
testcase_15 AC 1,044 ms
75,452 KB
testcase_16 AC 37 ms
52,496 KB
testcase_17 WA -
testcase_18 AC 37 ms
53,048 KB
testcase_19 AC 37 ms
53,504 KB
testcase_20 AC 37 ms
52,340 KB
testcase_21 AC 38 ms
52,804 KB
testcase_22 AC 38 ms
52,188 KB
testcase_23 AC 37 ms
52,652 KB
testcase_24 AC 37 ms
52,436 KB
testcase_25 AC 1,052 ms
75,960 KB
testcase_26 AC 1,070 ms
75,688 KB
testcase_27 AC 1,007 ms
75,476 KB
testcase_28 AC 991 ms
76,016 KB
testcase_29 AC 666 ms
75,964 KB
testcase_30 AC 999 ms
75,604 KB
testcase_31 AC 1,031 ms
75,720 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):
    X = f(R + i, G, B - 2 * i)
    ans = max(ans, min(X))
print(ans)
0