제출 #471477

#제출 시각아이디문제언어결과실행 시간메모리
471477fuad27Bitaro the Brave (JOI19_ho_t1)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; #define int long long int main () { int h, w; cin >> h >> w; string v[h]; for(int i = 0;i<h;i++)cin>>v[i]; int cnt[w] = {0}, ans = 0, k = 0; for(int i = h-1;i>=0;i--) { k = 0; for(int j = w-1;j>=0;j--) { if(v[i][j] == 'J')ans+=cnt[j]*k; else if(v[i][j] == 'O')k++; else cnt[j]++; } } cout<<ans<<endl; }

컴파일 시 표준 에러 (stderr) 메시지

cc1plus: error: '::main' must return 'int'