#include #include #include #include #include #include #include #include #include #include #include #include #include #define repd(i,a,b) for (int i=(a);i<(b);i++) #define rep(i,n) repd(i,0,n) #define var auto #define mod 1000000007 #define inf 2147483647 typedef long long ll; using namespace std; int inputValue(){ int a; cin >> a; return a; } template void output(T a, int precision) { if(precision > 0){ cout << fixed << setprecision(precision) << a << "\n"; } else{ cout << a << "\n"; } } // end of template int dp[2][21][21][21][21]; int main() { // source code string s; cin >> s; rep(i, 2){ rep(o, 21) rep(r, 21) rep(u, 21) rep(k, 21){ dp[i][o][r][u][k] = -1; } } dp[0][0][0][0][0] = 0; int ret = 0; rep(i, s.size()){ int od = i % 2; int nw = od ^ 1; rep(k, 21) rep(u, 21) rep(r, 21) rep(o, 21){ dp[nw][o][r][u][k] = dp[od][o][r][u][k]; } rep(k, 21) rep(u, 21) rep(r, 21) rep(o, 21){ if(dp[od][o][r][u][k] >= 0) { if (s[i] == 'K' || s[i] == '?'){ if (k < 20) dp[nw][o][r][u][k + 1] = max(dp[nw][o][r][u][k + 1], dp[od][o][r][u][k]); } if (s[i] == 'U' || s[i] == '?') { if (u < 20 && k > 0) dp[nw][o][r][u + 1][k - 1] = max(dp[nw][o][r][u + 1][k - 1], dp[od][o][r][u][k]); } if (s[i] == 'R' || s[i] == '?') { if (r < 20 && u > 0) dp[nw][o][r + 1][u - 1][k] = max(dp[nw][o][r + 1][u - 1][k], dp[od][o][r][u][k]); } if (s[i] == 'O' || s[i] == '?') { if (o < 20 && r > 0) dp[nw][o + 1][r - 1][u][k] = max(dp[nw][o + 1][r - 1][u][k], dp[od][o][r][u][k]); } if (s[i] == 'I' || s[i] == '?') { if (o > 0) { dp[nw][o - 1][r][u][k] = max(dp[nw][o - 1][r][u][k], dp[od][o][r][u][k] + 1); // cout << "I: " << i << ", "; // output(dp[nw][o - 1][r][u][k], 0); ret = max(ret, dp[nw][o - 1][r][u][k]); } } } } } output(ret, 0); return 0; }