SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
import java.util.Scanner;
public class N8457 {
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++) {
int n=sc.nextInt();
int b=sc.nextInt();
int e=sc.nextInt();
int cnt=0;
for(int j=0;j<n;j++){
int x=sc.nextInt();
for(int i=b-e;i<=b+e;i++){
if(i%x==0){
cnt++;
break;
}
}
}
System.out.println("#"+test_case+" "+cnt);
}
}
}
나머지 연산으로 배수를 찾는다.
'알고리즘 > 삼성 SW expert Academy' 카테고리의 다른 글
[SWEA] 8104. 조 만들기_JAVA (0) | 2022.05.26 |
---|---|
[SWEA] 8338. 계산기_JAVA (0) | 2022.05.25 |
[SWEA] 8673. 코딩 토너먼트1_JAVA (0) | 2022.05.24 |
[SWEA] 8658. Summation_JAVA (0) | 2022.05.24 |
[SWEA] 8821. 적고 지우기_JAVA feat.set사용하기 (0) | 2022.05.24 |