結果
問題 | No.1016 三目並べ |
ユーザー | kotatsugame |
提出日時 | 2020-04-03 21:47:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 517 bytes |
コンパイル時間 | 596 ms |
コンパイル使用メモリ | 66,176 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 02:02:43 |
合計ジャッジ時間 | 1,199 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int T,N; string s; main() { cin>>T; for(;T--;) { cin>>N>>s; bool flag=false; for(int i=0;i+3<=N;i++) { if(s.substr(i,3)=="ooo"||s.substr(i,3)=="-oo"||s.substr(i,3)=="oo-")flag=true; } for(int i=0;i+4<=N;i++) { if(s.substr(i,4)=="-o--"||s.substr(i,4)=="--o-")flag=true; } for(int i=0;i<N;i++) { if(s[i]!='o')continue; int j=i+1; while(j<N&&s[j]!='x') { if(s[j]=='o'&&(j-i)%2==0)flag=true; } } cout<<(flag?"O":"X")<<endl; } }