結果

問題 No.91 赤、緑、青の石
ユーザー 双六双六
提出日時 2020-07-24 19:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 719 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 55,660 KB
最終ジャッジ日時 2024-06-24 07:27:32
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,608 KB
testcase_01 AC 43 ms
54,492 KB
testcase_02 AC 44 ms
54,516 KB
testcase_03 AC 43 ms
54,140 KB
testcase_04 AC 44 ms
54,100 KB
testcase_05 AC 42 ms
54,304 KB
testcase_06 AC 44 ms
54,372 KB
testcase_07 AC 46 ms
54,796 KB
testcase_08 AC 43 ms
55,252 KB
testcase_09 AC 43 ms
54,700 KB
testcase_10 AC 43 ms
54,124 KB
testcase_11 AC 42 ms
54,544 KB
testcase_12 AC 44 ms
54,988 KB
testcase_13 AC 43 ms
54,112 KB
testcase_14 AC 44 ms
54,180 KB
testcase_15 AC 42 ms
54,992 KB
testcase_16 AC 43 ms
55,304 KB
testcase_17 AC 43 ms
54,396 KB
testcase_18 AC 43 ms
54,064 KB
testcase_19 AC 43 ms
54,240 KB
testcase_20 AC 43 ms
54,732 KB
testcase_21 AC 42 ms
53,932 KB
testcase_22 AC 42 ms
54,376 KB
testcase_23 AC 42 ms
54,264 KB
testcase_24 AC 43 ms
54,236 KB
testcase_25 AC 43 ms
55,660 KB
testcase_26 AC 44 ms
54,396 KB
testcase_27 AC 43 ms
53,416 KB
testcase_28 AC 43 ms
53,692 KB
testcase_29 AC 43 ms
53,820 KB
testcase_30 AC 43 ms
55,148 KB
testcase_31 AC 44 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

def Binary_Search(RGB, N):
	#初期化
	left = 0
	right = N
	ans = 0
	
	#二分探索
	while left <= right:
		mid = (left + right) // 2
		val = 0
		for i in range(3): 
			if RGB[i] - mid < 0:
				val += RGB[i] - mid
			else:
				val += int((RGB[i] - mid) // 2)

		if val >= 0:
			ans = max(ans, mid)
			left = mid + 1
		else:
			right = mid - 1

	return ans

#処理内容
def main():
	R, G, B = getlist()
	RGB = [R, G, B]
	N = 10 ** 7
	ans = Binary_Search(RGB, N)
	print(ans)


if __name__ == '__main__':
	main()
0