제출 #645628

#제출 시각아이디문제언어결과실행 시간메모리
645628ElnuR_007Chessboard (IZhO18_chessboard)C++14
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; #define ll long long int ll n,m,k,cnt; void anomalous_solve() { cin>>n>>k; if(k==0) { if(n%3==0) { cout<<4*(n/3); } else { cout<<(n*n)/2; } return; } else { if(n==6 && k==8) { cout<<"14";return; } } else { cout<<"8";return; } } int main() { // freopen("INPUT.txt","r",stdin); // freopen("OUTPUT.txt","w",stdout); ios_base::sync_with_stdio(); cin.tie(NULL); cout.tie(NULL); ll test=1; //cin>>test; for(int pos=1;pos<=test;pos++) anomalous_solve(); }

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

chessboard.cpp: In function 'void anomalous_solve()':
chessboard.cpp:27:2: error: 'else' without a previous 'if'
   27 |  else
      |  ^~~~