Notice
Recent Posts
Recent Comments
Link
목록불명확 (1)
개발 무지렁이
[문제풀이] B2018 수들의 합 5
수들의 합 5 🪅 반복횟수가 불명확할 때, while을 생각할 수 있느냐 🪅 앞을 자르거나 뒤를 붙이는 방식으로 전의 연산을 최대한 써(?)먹을 수 있느냐 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int tot = 1; int start = 1; int end = 1; int cnt = 0; while(end != N) { // N보다 작을때 2부터 더해나간다 (1은 이미 더해져있으니까) if(tot N) tot -= start+..
코딩 테스트/문제풀이
2023. 3. 25. 20:25