# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
889905 | 2023-12-20T09:29:37 Z | avighna | JJOOII 2 (JOI20_ho_t2) | C++17 | 0 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); ll n, k; string s; cin >> n >> k >> s; string target = string(k, 'J') + string(k, 'O') + string(k, 'I'); ll ptr = 0; ll mn = LLONG_MAX, mx = LLONG_MIN; for (ll i = 0; i < n; ++i) { if (s[i] == target[ptr]) { mn = min(mn, i); mx = max(mx, i); ptr++; } } if (ptr != target.length()) { cout << "-1\n"; } else { cout << mx - mn + 1 - 3 * k << "\n"; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 344 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |