結果
| 問題 |
No.516 赤と青の風船
|
| コンテスト | |
| ユーザー |
gotutiyan
|
| 提出日時 | 2017-09-28 23:45:27 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 427 bytes |
| コンパイル時間 | 698 ms |
| コンパイル使用メモリ | 68,992 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-15 18:26:52 |
| 合計ジャッジ時間 | 1,365 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
int max(int a, int b) {
int x = (a > b) ? a : b;
return x;
}
int min(int a, int b) {
int x = (a < b) ? a : b;
return x;
}
int main() {
string s;
int r=0, b=0;
for (int i = 0; i < 3; i++) {
getline(cin, s);
if (s[0] == 'R') r++;
else b++;
}
(r > b) ? cout << "RED" << endl : cout << "BLUE" << endl;
return 0;
}
gotutiyan