結果

問題 No.91 赤、緑、青の石
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-12-16 20:50:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 707 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-14 21:54:24
合計ジャッジ時間 2,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 28 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,624 KB
testcase_17 AC 30 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,624 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 WA -
testcase_27 AC 29 ms
10,624 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,G,B=[int(i) for i in input().split()]
color=[R,G,B]

count=0
color=sorted(color)
min_color=color[0]
count+=min_color
for i,c in enumerate(color):
    color[i]-=min_color
    # print(i,c)
# print(color,count)
min_color=color[1]
min_index=1
max_color=color[2]
max_index=2
amari=max_color-min_color
# print(max_color,min_color,amari)
if int(amari/2)>=min_color:
    count+=min_color
    color[max_index]-=(min_color*2+min_color)
    # print(color,count)
    count+=int(color[max_index]/3)
else:
    count+=int(amari/2)
    color[max_index]-=(int(amari/2)*2+int(amari/2))
    color[min_index]-=int(amari/2)
    # print(color,count)
    count+=int((int(color[max_index])+int(color[min_index]))/4)
print(count)
0