Submission #1027161

#TimeUsernameProblemLanguageResultExecution timeMemory
1027161vjudge1Bitaro the Brave (JOI19_ho_t1)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define ll long long #define nikah ios_base::sync_with_stdio(0); cin.tie(0); const ll maxn = 1e4+7; using namespace std; ll t,n,q; char a[3007][3007]; int main () { nikah cin>>n>>m; for (ll i=1; i<=n; i++) { for (ll j=1; j<=m; j++) { cin>>a[i][j]; } } ll ans = 0; for (ll i=1; i<=n; i++) { for (ll j=1; j<=m; j++) { if (a[i][j] != 'J') continue; for (ll k=1; k<=n; k++) { if (a[k][j] != 'I') continue; for (ll l=1; l<=m; l++) { if (a[i][j] == 'J' && a[i][l] == 'O'&& a[k][j] == 'I') ans++; } } } } cout<<ans<<endl; }

Compilation message (stderr)

joi2019_ho_t1.cpp: In function 'int main()':
joi2019_ho_t1.cpp:12:10: error: 'm' was not declared in this scope
   12 |  cin>>n>>m;
      |          ^