結果

問題 No.91 赤、緑、青の石
ユーザー yamanchu3776yamanchu3776
提出日時 2017-08-07 00:58:31
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 267 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-10-11 23:02:41
合計ジャッジ時間 56,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 3,665 ms
6,144 KB
testcase_02 AC 2,290 ms
6,272 KB
testcase_03 AC 4,151 ms
6,144 KB
testcase_04 AC 2,020 ms
6,016 KB
testcase_05 AC 4,921 ms
6,144 KB
testcase_06 WA -
testcase_07 AC 11 ms
6,400 KB
testcase_08 WA -
testcase_09 AC 11 ms
6,272 KB
testcase_10 WA -
testcase_11 AC 1,405 ms
6,272 KB
testcase_12 AC 4,537 ms
6,272 KB
testcase_13 AC 4,922 ms
6,272 KB
testcase_14 AC 3,310 ms
6,272 KB
testcase_15 TLE -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 11 ms
6,400 KB
testcase_19 AC 11 ms
6,272 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 11 ms
6,144 KB
testcase_24 AC 11 ms
6,144 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

rgb = list(map(int, raw_input().split()))

num = 0
while True:
	mxi = max(rgb)
	mni = min(rgb)
	if mxi - mni == 1:
		num = mni
		break
	for i in range( len(rgb) ):
		if mxi == rgb[i]:
			mx = i
		if mni == rgb[i]:
			mn = i
	rgb[mx] -= 2
	rgb[mn] += 1

print min(rgb)
0