結果
問題 | No.516 赤と青の風船 |
ユーザー | sper_air_reader |
提出日時 | 2017-12-17 03:07:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 1,848 ms |
コンパイル使用メモリ | 165,728 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-08 17:53:10 |
合計ジャッジ時間 | 2,436 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:8:29: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized] 8 | if(strcmp(s,"BLUE")==0)r++; | ~^~ main.cpp:5:9: note: 'r' was declared here 5 | int b,r; | ^ main.cpp:9:11: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized] 9 | else b++; | ~^~ main.cpp:5:7: note: 'b' was declared here 5 | int b,r; | ^
ソースコード
#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)r++; else b++; } if(b<r)puts("RED"); else puts("BLUE"); return 0; }