Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- n타일링2
- 이펙티브코틀린
- 스프링 입문
- 스프링 핵심 원리
- inflearn
- BOJ
- OS
- redis
- 우아한 테크 세미나
- Operating System
- 우아한레디스
- Four Squares
- C#
- 토마토
- 제프리리처
- TCP/IP
- 윤성우 저자
- 열혈 tcp/ip 프로그래밍
- FIFO paging
- 운영체제
- 열혈 TCP/IP 소켓 프로그래밍
- 10026번
- Spring
- HTTP
- Operating System.
- 에러핸들링
- C++
- 김영한
- 2475번
- Window-Via-c/c++
Archives
- Today
- Total
나의 브을로오그으
[c++] 1436번 : 영화감독 숌 본문
https://www.acmicpc.net/problem/1436
#include <iostream>
using namespace std;
bool isEndNum(int num)
{
int cnt = 0;
while (num >= 666)
{
if (num % 1000 == 666)
{
return true;
}
else
{
num /= 10;
}
}
return false;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int inputEndCount = 0;
int num = 665;
cin >> inputEndCount;
while (inputEndCount > 0)
{
++num;
if (isEndNum(num) == true)
{
--inputEndCount;
}
}
cout << num << '\n';
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1874번 : 스택 수열 (0) | 2022.03.25 |
---|---|
[c++] 1654번 : 랜선 자르기 (0) | 2022.03.23 |
[c++] 1259번 : 팰린드롬 수 (0) | 2022.03.22 |
[c++] 1181번 : 단어 정렬 (0) | 2022.03.20 |
[c++] 1085번 : 직사각형에서 탈출 (0) | 2022.03.15 |