Submission #1099452

#TimeUsernameProblemLanguageResultExecution timeMemory
1099452mihaihvhBitaro the Brave (JOI19_ho_t1)C++14
20 / 100
1075 ms860 KiB
#include <iostream> #include <set> #include <queue> #include <vector> #include <cmath> #include <algorithm> using namespace std; char v[501][501]; set<vector<int>> sol; int main() { int n, m, ans = 0; cin >> n >> m; for (int i = 1; i <= n; ++i) for (int j = 1; j <= m; ++j) cin >> v[i][j]; for (int i = 1; i <= n; ++i) { for (int j = 1; j <= m; ++j) { if (v[i][j] == 'J') { for (int k = 1; k <= n; ++k) { if (v[k][j] == 'I') { for (int l = 1; l <= m; ++l) { if (v[i][l] == 'O' && i < k && j < l) { ++ans; } } } } } } } cout << ans; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...