結果

問題 No.516 赤と青の風船
ユーザー sper_air_readersper_air_reader
提出日時 2017-12-17 03:00:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 1,458 ms
コンパイル使用メモリ 165,648 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 17:33:17
合計ジャッジ時間 2,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:9:11: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized]
    9 |     else r++;
      |          ~^~
main.cpp:5:9: note: 'r' was declared here
    5 |   int b,r;
      |         ^
main.cpp:8:29: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
    8 |     if(strcmp(s,"BLUE")==0)b++;
      |                            ~^~
main.cpp:5:7: note: 'b' was declared here
    5 |   int b,r;
      |       ^

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
  char s[10];
  int b,r;
  for(int i=0;i<3;i++){
    scanf("%s",s);
    if(strcmp(s,"BLUE")==0)b++;
    else r++;
  }
  if(b<r)puts("RED");
  else puts("BLUE");
  return 0;
}
0