結果
問題 | No.486 3 Straight Win(3連勝) |
ユーザー | Eclair1015 |
提出日時 | 2018-05-25 20:54:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 337 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 64,128 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 18:05:08 |
合計ジャッジ時間 | 1,373 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:12:29: warning: 'east' may be used uninitialized [-Wmaybe-uninitialized] 12 | east++; | ~~~~^~ main.cpp:6:18: note: 'east' was declared here 6 | int west,east; | ^~~~ main.cpp:14:29: warning: 'west' may be used uninitialized [-Wmaybe-uninitialized] 14 | west++; | ~~~~^~ main.cpp:6:13: note: 'west' was declared here 6 | int west,east; | ^~~~
ソースコード
#include<iostream> #include<string.h> using namespace std; int main(){ char c[100]; int west,east; cin>>c; for(int i=0;i<strlen(c);i++){ if(c[i]=='O'){ east++; }else if(c[i]=='X'){ west++; } if(east==3){ cout<<"East"<<endl; break; }else if(west==3){ cout<<"West"<<endl; break; } } return 0; }