문제 출처: https://www.acmicpc.net/problem/1358 1358번: 하키 첫째 줄에 수 W H X Y P가 주어진다. P는 선수의 수이다. W와 H는 100보다 작거나 같은 자연수이고, H는 짝수이다. X와 Y는 절댓값이 100보다 작거나 같은 정수이다. P는 최대 50인 자연수이다. 둘째 줄부 www.acmicpc.net Sol) #include #include int main(){ int width, height, x, y, player_num; int radius, player_x, player_y, cnt = 0; scanf("%d %d %d %d %d", &width, &height, &x, &y, &player_num); radius = height / 2; while(..