Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 1773] 폭죽쇼 본문
반응형
배열에 폭죽이 터질때의 시간을 저장한다. 폭죽이 동시에 터진다면 1개만 카운트한다.
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int c = sc.nextInt();
int a[] = new int[c+1];
int cnt = 0;
for(int i=0; i<n; i++) {
int p = sc.nextInt();
for(int j=p; j<=c; j+=p) {
if(a[j] == 0) {
a[j] = 1;
cnt++;
}
}
}
System.out.println(cnt);
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 3054] 피터팬 프레임 (0) | 2019.04.27 |
---|---|
[백준 2810] 컵홀더 (0) | 2019.04.27 |
[백준 12813] 이진수 연산 (0) | 2019.04.27 |
[백준 11292] 키 큰 사람 (0) | 2019.04.27 |
[백준 16236] 아기 상어 (0) | 2019.04.23 |
Comments