제출 #898222

#제출 시각아이디문제언어결과실행 시간메모리
898222andrei_iorgulescuBitaro the Brave (JOI19_ho_t1)C++14
100 / 100
230 ms159504 KiB
#include <bits/stdc++.h> using namespace std; #define int long long int n,m; char a[3005][3005]; int flin[3005][3005],fcol[3005][3005]; signed main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n >> m; for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) cin >> a[i][j]; for (int i = 1; i <= n; i++) { for (int j = m; j >= 1; j--) { flin[i][j] = flin[i][j + 1]; if (a[i][j] == 'O') flin[i][j]++; } } for (int j = 1; j <= m; j++) { for (int i = n; i >= 1; i--) { fcol[i][j] = fcol[i + 1][j]; if (a[i][j] == 'I') fcol[i][j]++; } } int ans = 0; for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) if (a[i][j] == 'J') ans += flin[i][j] * fcol[i][j]; cout << ans; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...