結果
問題 | No.516 赤と青の風船 |
ユーザー |
|
提出日時 | 2018-02-18 16:49:25 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 302 bytes |
コンパイル時間 | 432 ms |
コンパイル使用メモリ | 58,212 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 05:16:25 |
合計ジャッジ時間 | 1,054 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 6 |
ソースコード
#include <iostream>#include <algorithm>#include <string>#include <cstdio>using namespace std;int main(){int f = 0;for (int i = 0; i < 3; i++) {string s;cin >> s;f += (s == "RED" ? 1 : -1);}cout << (f > 0 ? "RED" : "BLUE") << endl;return 0;}