結果
問題 | No.1016 三目並べ |
ユーザー | penguinman_2nd |
提出日時 | 2020-04-03 22:23:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,181 bytes |
コンパイル時間 | 1,655 ms |
コンパイル使用メモリ | 167,964 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 03:59:47 |
合計ジャッジ時間 | 6,724 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,j,n) for(int i=(int)(j);i<(int)(n);i++) #define REP(i,j,n) for(int i=(int)(j);i<=(int)(n);i++) #define MOD 1000000007 #define int long long #define ALL(a) (a).begin(),(a).end() #define vi vector<int> #define vii vector<vi> #define pii pair<int,int> #define priq priority_queue<int> #define disup(A,key) distance(A.begin(),upper_bound(ALL(A),(int)(key))) #define dislow(A,key) distance(A.begin(),lower_bound(ALL(A),(int)(key))) #define tii tuple<int,int,int> #define Priq priority_queue<int,vi,greater<int>> #define pb push_back #define mp make_pair #define INF (1ll<<60) char func(int N,string S){ rep(j,0,N-2){ string T=S.substr(j,3); if(T=="ooo") return 'O'; if(T=="-oo"||T=="oo-"||T=="o-o") return 'O'; } rep(i,0,N){ if(S[i]=='-'){ S[i]='o'; int sum=0; rep(j,0,N-2){ string T=S.substr(j,3); if(T=="ooo") return 'O'; if(T=="-oo"||T=="oo-"||T=="o-o") sum++; } if(sum>=2) return 'O'; S[i]='-'; } } return 'X'; } signed main(){ int T; cin>>T; rep(_,0,T){ int N; string S; cin>>N>>S; cout<<func(N,S)<<endl; } }