이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define ll long long
#define endl '\n'
const ll MOD = 1e9+7;
const ll INF = 1e16;
const ll MAX = 2 * 1e5;
void solve(){
	int n,m;
	cin>>n>>m;
	char arr[n][m];
	vector<array<int,3>> cols(m), rows(n);
	for(int i = 0; i < n ;i++){
		for(int j = 0; j < m; j++){
			cin>>arr[i][j];
			if(arr[i][j] == 'J'){
				cols[j][0]++;
				rows[i][0]++;
			}else if(arr[i][j] == 'O'){
				cols[j][1]++;
				rows[i][1]++;
			}else{
				cols[j][2]++;
				rows[i][2]++;
			}
		}
	}
	ll ans = 0;
	for(int i = 0; i < n ;i++){
		for(int j = 0; j < m; j++){
			if(arr[i][j] == 'J'){
				cols[j][0]--;
				rows[i][0]--;
				ans+= rows[i][1] * cols[j][2];
			}else if(arr[i][j] == 'O'){
				cols[j][1]--;
				rows[i][1]--;
			}else{
				cols[j][2]--;
				rows[i][2]--;
			}
		}
	}
	cout<<ans;
}
int main()
{
	cin.tie(NULL);
	ios::sync_with_stdio(NULL);
	int t = 1;
	//cin >> t;
	while(t--){
		//cout<<"Case #"<<t<<" > "<<endl;
		solve();
		cout<<endl;
	}
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |