Submission #916515

#TimeUsernameProblemLanguageResultExecution timeMemory
916515viwlesxqBitaro the Brave (JOI19_ho_t1)C++17
20 / 100
1063 ms624 KiB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define all(x) x.begin(), x.end()
#define size(x) (int)x.size()

template<class S, class T>
bool chmin(S &a, const T &b) {
    return a > b && (a = b) == b;
}
template<class S, class T>
bool chmax(S &a, const T &b) {
    return a < b && (a = b) == b;
}
const int inf = 1e9 + 7;
const int INF = 1e18 + 7;
const int mod = 1e9 + 7;

signed main() {
    cin.tie(nullptr)->sync_with_stdio(false);
    int n, m; cin >> n >> m;
    string s[n];
    for (int i = 0; i < n; ++i) cin >> s[i];
    int res = 0;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            for (int k = i + 1; k < n; ++k) {
                for (int l = j + 1; l < m; ++l) {
                    if (s[i][j] == 'J' && s[i][l] == 'O' && s[k][j] == 'I') {
                        res++;
                    }
                }
            }
        }
    }
    cout << res;
} 
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...