Recent Posts
Notice
No Rules Rules
가장 큰 금민수 (feat. 백준, 1526번) 본문
728x90
반응형
가장 큰 금민수
https://www.acmicpc.net/problem/1526
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
bool check(register int n){
while(n != 0){
if(n % 10 != 4 && n % 10 != 7)
return false;
n /= 10;
}
return true;
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, ans;
cin >> N;
for(; N >= 4; --N)
if(check(N)){
ans = N;
break;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
문제의 요구사항에 따라 브루트포스 문제답게 풀이하였습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
N과 M (5) (feat. 백준, 15654번) (0) | 2023.02.03 |
---|---|
공 (feat. 백준, 1547번) (0) | 2023.02.03 |
세로읽기 (feat. 백준, 10798번) (0) | 2023.02.01 |
두 배열의 합 (feat. 백준, 2143번) (0) | 2023.02.01 |
이중 우선순위 큐 (feat. 백준, 7662번) (0) | 2023.01.31 |
Comments