-
[SWEA-1288] 새로운 불면증 치료법 - Java공부/SWEA 2022. 6. 10. 20:58728x90
https://swexpertacademy.com/main/code/problem/problemDetail.do
SWEA 1288 새로운 불면증 치료법 자바 풀이
난이도: D2
코드
import java.util.Scanner;public class swea1288 {public static void main(String args[]) throws Exception{Scanner sc = new Scanner(System.in);int T;T=sc.nextInt();for(int test_case = 1; test_case <= T; test_case++){boolean arr[]=new boolean[10];String A=sc.next();int num=Integer.parseInt(A);int count=0;int cnt=1;while(true){for(int i=0;i<A.length();i++){int temp=Integer.parseInt(A.substring(i,i+1));if(arr[temp]==false){arr[temp]=true;count++;}}if(count==10)break;else{cnt++;A=Integer.toString(num*cnt);}}System.out.println("#"+test_case+" "+A);}}}728x90반응형'공부 > SWEA' 카테고리의 다른 글
[SWEA-13229] 일요일 - Java (0) 2022.06.12 [SWEA-14178] 1차원 정원 - Java (0) 2022.06.11 [SWEA-1945] 간단한 소인수분해 - Java (0) 2022.06.09 [SWEA-1946] 간단한 압축 풀기 (0) 2022.06.08 [SWEA-1959] 두 개의 숫자열 - Java (0) 2022.06.08