結果

問題 No.91 赤、緑、青の石
ユーザー あかりきあかりき
提出日時 2021-02-09 10:46:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 60,744 KB
最終ジャッジ日時 2024-06-24 07:32:05
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
59,180 KB
testcase_01 AC 62 ms
59,816 KB
testcase_02 AC 58 ms
60,744 KB
testcase_03 AC 62 ms
59,272 KB
testcase_04 AC 53 ms
59,100 KB
testcase_05 AC 74 ms
60,396 KB
testcase_06 AC 58 ms
59,284 KB
testcase_07 AC 39 ms
53,360 KB
testcase_08 AC 38 ms
52,760 KB
testcase_09 AC 38 ms
52,744 KB
testcase_10 AC 38 ms
53,196 KB
testcase_11 AC 57 ms
60,664 KB
testcase_12 AC 73 ms
60,708 KB
testcase_13 AC 69 ms
59,692 KB
testcase_14 AC 66 ms
60,032 KB
testcase_15 AC 68 ms
60,100 KB
testcase_16 AC 39 ms
52,688 KB
testcase_17 AC 38 ms
53,148 KB
testcase_18 AC 39 ms
53,228 KB
testcase_19 AC 39 ms
52,840 KB
testcase_20 AC 39 ms
52,852 KB
testcase_21 AC 39 ms
52,396 KB
testcase_22 AC 39 ms
52,552 KB
testcase_23 AC 41 ms
51,956 KB
testcase_24 AC 39 ms
52,924 KB
testcase_25 AC 84 ms
59,752 KB
testcase_26 AC 76 ms
59,980 KB
testcase_27 AC 40 ms
52,676 KB
testcase_28 AC 48 ms
58,488 KB
testcase_29 AC 52 ms
59,628 KB
testcase_30 AC 86 ms
58,760 KB
testcase_31 AC 87 ms
59,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

r,g,b=map(int,input().split())
x=min(r,g,b)
r-=x;g-=x;b-=x
y=(r+g+b)//4
for i in range(max(r,g,b),-1,-1):
  ct=0
  if r>=i:
    ct+=(r-i)//2
  else:
    ct-=(i-r)
  if g>=i:
    ct+=(g-i)//2
  else:
    ct-=(i-g)
  if b>=i:
    ct+=(b-i)//2
  else:
    ct-=(i-b)
  if ct>=0:
    print(x+i)
    exit()
0