[백준] 3003번 킹, 퀸, 룩, 비숍, 나이트, 폰 - Java
문제 출처
※ 풀이
필요한 말의 계수를 연산해서 반환하면 되는 단순한 문제이다.
※ 소스코드
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
//input
Scanner scanner = new Scanner(System.in);
int[] cnt = new int[6];
int[] full = new int[]{1, 1, 2, 2, 2, 8};
for (int i = 0; i < 6; i++) {
cnt[i] = scanner.nextInt();
}
for (int i = 0; i < full.length; i++) {
cnt[i] = full[i] - cnt[i];
System.out.println(cnt[i]);
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 14852번 타일 채우기3(시간초과 해결) - Java (0) | 2021.03.10 |
---|---|
[백준] 2133번 타일 채우기 - Java (0) | 2021.03.10 |
[백준] 9663번 N-Queen- Java (0) | 2021.03.09 |
[백준] 2338번 긴자리 계산(BigInteger) - Java (0) | 2021.03.09 |
[백준] 2475번 검증수 - Java (0) | 2021.03.09 |