This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
#define pb push_back
#define ff first
#define ss second
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
 
void solve(){
 	
 	int n,m;
 	cin >> n >> m;
 	vector<string> s(n);
 	for(int i = 0; i < n; i++){
 		cin >> s[i];
 	}
 	vector<vector<int>> cnt(n,vector<int>(m));
 	for(int j = 0; j < m; j++){
 		for(int i = n - 1; i >= 0; i--){
 			cnt[i][j] = (i + 1 < n ? cnt[i + 1][j] : 0) + (s[i][j] == 'I');
 		}
 	}
 	int ans = 0;
 	for(int i = 0; i < n; i++){
 		int freq = 0;
 		for(int j = m - 1; j >= 0; j--){
 			freq += (s[i][j] == 'O');
 			if(s[i][j] == 'J'){
 				ans += freq * cnt[i][j];
 			}
 		}
 	}
 	cout << ans << endl;
}
 
signed main(){ 
 
	ios::sync_with_stdio(0);
	cin.tie(0);
 
	int t = 1;
//	cin >> t;
 
	while(t--)
		solve();
 	
	return 0;
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |