250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 완탐
- 전화번호속의암호
- BFS
- 중복조합
- 자바 코테
- D드라이브생성
- 23288
- 에라토스테네스의채
- java
- Bfs와DFS
- 볼륨 만들기
- 알고리즘
- 파티션 크기 조정
- 자바
- 주사위굴리기2
- 정올 1620
- 코테준비
- 알고리즘개념
- 완전탐색
- 백준15652
- 백준
- 삼성역테
- 중복순열
- N과M
- 재귀함수
- 순열
- 정보처리기사
- 백준13458
- 코테
- 백준2251
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 13458번 시험 감독 본문
728x90
주의할 점
자료형!!! 최악의 경우 N * 100만의 경우의 수가 나올 수있음.
쉬워보였지만 long으로 선언을 안해서 틀렸다.
public class BOJ_13458 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader in= new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(in.readLine());
int[] arr = new int[N]; // 각 시험장마다의 학생수
StringTokenizer st = new StringTokenizer(in.readLine()," ");
for(int i=0;i<N;i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
st = new StringTokenizer(in.readLine()," ");
int B = Integer.parseInt(st.nextToken()); // 총감독관
int C = Integer.parseInt(st.nextToken()); // 부감독관
// 자료형 주의
long total = 0;
for(int i=0;i<N;i++) {
total ++;
int remain = arr[i] - B;
if(remain>0) {
total += remain/C;
if(remain%C != 0) total++;
}
}
System.out.println(total);
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 2580번 스도쿠 (0) | 2021.03.09 |
---|---|
[문제] 백준 2661번 좋은수열 (0) | 2021.03.09 |
[문제] 백준 1149번 RGB 거리 (0) | 2021.03.06 |
[문제] 백준 1260번 BFS와 DFS (0) | 2021.03.04 |
[문제] 백준 10026번 적록색약 (0) | 2021.03.03 |
Comments