[PS] BaekJoon 2630
#include <iostream>
using namespace std;
int N;
int Map[129][129];
int White = 0;
int Blue = 0;
void Solve(int X, int Y, int Length)
{
if (Length == 1)
{
if (Map[X][Y] == 1)
Blue++;
else
White++;
...
sungwoolee.hashnode.dev1 min read