結果
| 問題 | No.516 赤と青の風船 |
| コンテスト | |
| ユーザー |
h_noson
|
| 提出日時 | 2017-06-13 00:10:43 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 326 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-11 20:07:02 |
| 合計ジャッジ時間 | 1,867 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 |
ソースコード
count = {"BLUE":0, "RED":0}
count[input()] += 1
count[input()] += 1
count[input()] += 1
if count["BLUE"] >= 2:
print("BLUE")
else:
print("RED")
h_noson