# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
139619 | mlyean00 | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++17 | 2 ms | 380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifdef DEBUG
#include "debug.hpp"
#else
#pragma GCC optimize("Ofast")
#define trace(...)
#include <bits/stdc++.h>
#define endl '\n'
#endif
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
int n;
string s;
cin >> n >> s;
int ans = 0;
for (int i = 1; i < n; ++i) {
if (s[i] != s[i - 1]) continue;
int j1, j2;
for (j1 = i - 2; j1 >= 0; --j1) {
if (s[i - 1] != s[j1] && (j1 == 0 || s[i - 1] != s[j1 - 1])) break;
}
for (j2 = i + 1; j2 < n; ++j2) {
if (s[i - 1] != s[j2]) break;
}
if (j1 == -1 && j2 == n) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |