結果

問題 No.516 赤と青の風船
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-23 15:56:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 53,764 KB
最終ジャッジ日時 2024-06-23 17:40:59
合計ジャッジ時間 1,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,968 KB
testcase_01 AC 35 ms
53,304 KB
testcase_02 AC 35 ms
51,952 KB
testcase_03 AC 35 ms
53,372 KB
testcase_04 AC 35 ms
53,408 KB
testcase_05 AC 35 ms
53,764 KB
testcase_06 AC 36 ms
52,188 KB
testcase_07 AC 35 ms
52,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

r = 0
b = 0
for i in range(3):
    s = str(input())
    if s == 'RED':
        r += 1
    else:
        b += 1
if b > r:
    print('BLUE')
else:
    print('RED')
0