Recent Posts
Notice
No Rules Rules
창문 닫기 (feat. 백준, 13909번) 본문
728x90
반응형
창문 닫기
https://www.acmicpc.net/problem/13909
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register long long N, ans = 0;
cin >> N;
for(register int n = 1; n * n <= N; ++n)
++ans;
cout << ans;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
고추장 괄호 문자열 (feat. 백준, 27967번) (0) | 2023.04.25 |
---|---|
2진수 8진수 (feat. 백준, 1373번) (0) | 2023.04.21 |
불우이웃돕기 (feat. 백준, 1414번) (0) | 2023.04.20 |
베라의 패션 (feat. 백준, 15439번) (0) | 2023.04.20 |
영단어 암기는 괴로워 (feat. 백준, 20920번) (0) | 2023.04.20 |
Comments