728x90
반응형
https://www.acmicpc.net/problem/3003
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] str = sc.nextLine().split(" ");
int [] result = new int[str.length];
result[0] = 1;
result[1] = 1;
result[2] = 2;
result[3] = 2;
result[4] = 2;
result[5] = 8;
for(int i=0; i<str.length; i++) {
result[i] = result[i] - Integer.parseInt(str[i]);
}
for(int i=0; i<result.length; i++) {
System.out.print(result[i]+" ");
}
}
}
|
cs |
728x90
반응형
'알고리즘' 카테고리의 다른 글
백준 알고리즘 2444번: 별 찍기 - 7 - JAVA (0) | 2024.04.29 |
---|---|
백준 알고리즘 25083번: 새싹 - JAVA (0) | 2024.04.29 |
백준 알고리즘 11718번: 그대로 출력하기 - JAVA (0) | 2024.04.28 |
백준 알고리즘 5622번: 다이얼 - JAVA (0) | 2024.04.28 |
백준 알고리즘 2908번: 상수 - JAVA (0) | 2024.04.27 |