結果

問題 No.516 赤と青の風船
ユーザー 310icecrystal310icecrystal
提出日時 2023-04-28 18:03:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 52,996 KB
最終ジャッジ日時 2024-11-17 17:34:25
合計ジャッジ時間 926 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,880 KB
testcase_01 AC 32 ms
52,876 KB
testcase_02 AC 29 ms
52,832 KB
testcase_03 AC 29 ms
52,996 KB
testcase_04 AC 29 ms
52,908 KB
testcase_05 AC 42 ms
52,800 KB
testcase_06 AC 29 ms
52,000 KB
testcase_07 AC 29 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

red = 0
blue = 0
for i in range(3):
	S = input()
	if S == "RED":
		red += 1
	else:
		blue += 1

if red >= 2:
	print("RED")
else:
	print("BLUE")
0