結果
問題 | No.1016 三目並べ |
ユーザー | Mayimg |
提出日時 | 2020-04-05 20:41:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 2,110 ms |
コンパイル使用メモリ | 201,640 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 02:47:10 |
合計ジャッジ時間 | 2,539 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); cin.tie(0); auto solve = [] () { int n; cin >> n; string s; cin >> s; for (int i = 0; i + 2 < n; i++) { if (s.substr(i, 3) == "ooo") return "O\n"; } for (int i = 0; i < n; i++) { if (s[i] == '-') { s[i] = 'o'; for (int j = max(0, i - 2); j <= i; j++) { if (s.substr(j, 3) == "ooo") return "O\n"; } for (int j = max(0, i - 3); j <= i; j++) { if (s.substr(j, 4) == "_oo_") return "O\n"; } s[i] = '-'; } } return "X\n"; }; int t; cin >> t; while (t--) cout << solve(); return 0; }