Notice
Recent Posts
Recent Comments
Link
삐까냥의 파도타기
13458번) 시험 감독 본문
문제 출처 : https://www.acmicpc.net/problem/13458
이거 문제가 왜이리 쉽죠?
2018년 4월 8일 - 다듬지 않은 시험 코드 (소요시간 : 10분) import java.util.Scanner; public class Q13458 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int classNum = sc.nextInt(); int[] classes = new int[classNum]; for (int i = 0; i < classNum; i++) { classes[i] = sc.nextInt(); }
int first = sc.nextInt(); int second = sc.nextInt();
long result = 0; for (int i = 0; i < classNum; i++) { int peopleNum = classes[i];
//총 감독 peopleNum -= first; result += 1;
//부감독 if (peopleNum > 0) { result += peopleNum/second; peopleNum %= second; if (peopleNum > 0) { result += 1; } } }
System.out.println(result); } } |
'코딩 > 삼성 SW 역량 테스트 기출' 카테고리의 다른 글
13460번) 구슬탈출2 (0) | 2018.04.09 |
---|---|
12100번) 2048 (Easy) (0) | 2018.04.08 |
14500번) 테트로미노 (0) | 2018.04.08 |
14499번) 주사위 굴리기 (0) | 2018.04.08 |
14501번) 퇴사 (0) | 2018.04.07 |