728x90
반응형
안녕하세요. delay100 입니다!
미들러 문제
1번. 플러그
https://www.acmicpc.net/problem/2010
콘센트 1개마다 꽂을 수 있는 콘센트 가능 수가 1개씩 줄어듭니다.
따라서 매 콘센트마다 -1을 해주고, 마지막 콘센트는 컴퓨터를 연결하면 되므로 다시 +1을 해주면됩니다.
import java.io.*;
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());
int sum = 0;
for(int i=0; i<N; i++) {
int a = Integer.parseInt(br.readLine()) - 1;
sum += a;
}
bw.write(Integer.toString(sum+1));
br.close();
bw.close();
}
}
+ 비기너 문제
일곱 난쟁이 https://www.acmicpc.net/problem/2309
+ 챌린저 문제
신나는 함수 실행 https://www.acmicpc.net/problem/9184
봐주셔서 감사합니다. 피드백 환영합니다.
728x90
반응형
'항해99 > 99club1기TIL' 카테고리의 다른 글
[99club/TIL] 7주차 - 화요일 TIL(Today I Learned) (0) | 2024.05.08 |
---|---|
[99club/TIL] 7주차 - 월요일 TIL(Today I Learned) (0) | 2024.05.06 |
[99club/TIL] 6주차 - 토요일 TIL(Today I Learned) (0) | 2024.05.04 |
[99club/TIL] 6주차 - 금요일 TIL(Today I Learned) (0) | 2024.05.03 |
[99club/TIL] 6주차 - 목요일 TIL(Today I Learned) (0) | 2024.05.02 |