728x90
반응형
안녕하세요. delay100 입니다.
미들러 문제. 진짜 공간
https://www.acmicpc.net/problem/1350
import java.io.*;
import java.util.*;
public class Main {
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int N = Integer.parseInt(br.readLine());
StringTokenizer st = new StringTokenizer(br.readLine());
long[] list = new long[N];
for(int i=0; i<N; i++) {
list[i] = Long.parseLong(st.nextToken());
}
long num = Long.parseLong(br.readLine());
long sum = 0;
for(int i=0; i<N; i++) {
sum += list[i] / num;
sum += list[i] % num > 0 ? 1 : 0;
}
bw.write(Long.toString(sum*num));
br.close();
bw.close();
}
}
+ 비기너 문제
바구니 뒤집기 https://www.acmicpc.net/problem/10811
+ 챌린저 문제
요세푸스 문제 https://www.acmicpc.net/problem/11866
감사합니다. 피드백 환영합니다.
728x90
반응형
'항해99 > 99club1기TIL' 카테고리의 다른 글
[99club/TIL] 6주차 - 월요일 TIL(Today I Learned) (0) | 2024.04.29 |
---|---|
[99club/TIL] 5주차 - 일요일 TIL(Today I Learned) (0) | 2024.04.29 |
[99club/TIL] 5주차 - 수요일 TIL(Today I Learned) (0) | 2024.04.24 |
[99club/TIL] 5주차 - 화요일 TIL(Today I Learned) (1) | 2024.04.23 |
[99club/TIL] 5주차 - 월요일 TIL(Today I Learned) (1) | 2024.04.22 |