結果

問題 No.516 赤と青の風船
ユーザー kohei2019kohei2019
提出日時 2022-02-04 22:41:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 86,904 KB
実行使用メモリ 71,412 KB
最終ジャッジ日時 2023-09-02 05:12:59
合計ジャッジ時間 2,019 ms
ジャッジサーバーID
(参考情報)
judge13 / judge16
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,240 KB
testcase_01 AC 79 ms
71,348 KB
testcase_02 AC 77 ms
71,316 KB
testcase_03 AC 78 ms
71,412 KB
testcase_04 AC 82 ms
71,280 KB
testcase_05 AC 75 ms
71,152 KB
testcase_06 AC 76 ms
71,352 KB
testcase_07 AC 75 ms
71,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = [input() for i in range(3)]
print('RED' if l.count('RED') >= 2 else 'BLUE')
0