Recent Posts
Notice
No Rules Rules
2023년은 검은 토끼의 해 (feat. 백준, 27494번) 본문
728x90
반응형
2023년은 검은 토끼의 해
https://www.acmicpc.net/problem/27494
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans = 0;
cin >> N;
string str;
for(register int n = 2023, p; n <= N; ++n){
str = to_string(n);
if((p = str.find('2', 0)) >= 0 && (p = str.find('0', p + 1)) >= 0 && (p = str.find('2', p + 1)) >= 0 && (p = str.find('3', p + 1)) >= 0)
++ans;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
한 문자마다 체크하며 순서대로 2023 이 나오면 정답으로 인정되는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
월드컵 (feat. 백준, 6987번) (0) | 2023.02.22 |
---|---|
공 넣기 (feat. 백준, 10810번) (0) | 2023.02.21 |
코딩은 체육과목 입니다 (feat. 백준, 25314번) (0) | 2023.02.21 |
슈퍼 마리오 (feat. 백준, 2851번) (0) | 2023.02.20 |
후위 표기식 (feat. 백준, 1918번) (0) | 2023.02.20 |
Comments