Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 13909] 창문 닫기 본문
반응형
1부터 열려져 있는 창문 개수를 시뮬레이션 해보면 n이 제곱근일때 수가 증가한다.
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int cnt = 0;
for(int i=1; i*i<=n; i++)
cnt++;
System.out.println(cnt);
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 10867] 중복 빼고 정렬하기 (0) | 2019.07.03 |
---|---|
[백준 1389] 케빈 베이컨의 6단계 법칙 (0) | 2019.07.03 |
[백준 9625] BABBA (0) | 2019.07.02 |
[백준 1252] 이진수 덧셈 (0) | 2019.07.02 |
[백준 16510] Predictable Queue (0) | 2019.07.02 |
Comments