結果

問題 No.516 赤と青の風船
コンテスト
ユーザー bellangeldindon
提出日時 2017-05-30 21:12:58
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 159 bytes
記録
コンパイル時間 197 ms
コンパイル使用メモリ 77,704 KB
最終ジャッジ日時 2025-12-03 23:52:15
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

color = [0, 0]
for i in range(0, 3):
	if raw_input() == 'RED':
		color[0] += 1
	else:
		color[1] += 1
if color[0] > color[1]:
	print 'RED'
else:
	print 'BLUE'
0