티스토리 뷰

백준

백준 소스코드 [C++] 1436 영화감독 숌

Hani_Levenshtein 2021. 3. 9. 01:30

www.acmicpc.net/problem/1436

 

1436번: 영화감독 숌

666은 종말을 나타내는 숫자라고 한다. 따라서, 많은 블록버스터 영화에서는 666이 들어간 제목을 많이 사용한다. 영화감독 숌은 세상의 종말 이라는 시리즈 영화의 감독이다. 조지 루카스는 스타

www.acmicpc.net

백준 소스코드 [C++] 1436 영화감독 숌

#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define make_unique(v) v.erase(unique(v.begin(), v.end()), v.end())
typedef long long ll;
using namespace std;

int main(){
     ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    
    int n, count = 0;
	string s;
	cin >> n;
    int k=665;
	while(true){
		s = to_string(++k);
		if (s.find("666") != -1) ++count;
		if (count == n) {
			cout << k;
			break;
		}
	}
    return 0;
}
댓글