-
[SWEA-14178] 1차원 정원 - Java공부/SWEA 2022. 6. 11. 21:15728x90
https://swexpertacademy.com/main/code/problem/problemDetail.do
SWEA 14178번 1차원 정원 자바 풀이
난이도: D3
코드
import java.util.*;public class swea14178 {public static void main(String args[]) throws Exception{Scanner sc = new Scanner(System.in);int T;T=sc.nextInt();for(int test_case = 1; test_case <= T; test_case++){int num1=sc.nextInt();int num2=sc.nextInt();int count=0;int temp=1;while(temp<=num1){temp+=(num2*2)+1;count++;}System.out.println("#"+test_case+" "+count);}}}728x90반응형'공부 > SWEA' 카테고리의 다른 글
[SWEA-13218] 조별과제 - Java (0) 2022.06.13 [SWEA-13229] 일요일 - Java (0) 2022.06.12 [SWEA-1288] 새로운 불면증 치료법 - Java (0) 2022.06.10 [SWEA-1945] 간단한 소인수분해 - Java (0) 2022.06.09 [SWEA-1946] 간단한 압축 풀기 (0) 2022.06.08