티스토리 뷰
https://www.acmicpc.net/problem/1065
#include<iostream>
#include<string>
using namespace std;
//한수
bool hansu(int x) {
if (x < 100)
return true;
else if (x == 1000)
return false;
else {
int a, b, c, d, num=x;
d = num / 1000; num -= d * 1000;
c = num / 100; num -= c * 100;
b = num / 10; num -= b * 10;
a = num;
if ((a - b) == (b - c))
return true;
else
return false;
}
}
int main(void) {
int N, t=0;
cin >> N;
for (int i = 1; i <= N; i++) {
if (hansu(i)) {
t++;
}
}
cout << t;
}
'Algorithm > 유형별 : Search' 카테고리의 다른 글
[C++] [탐색] 백준 1568번 : 새 (0) | 2020.02.02 |
---|---|
[C++] [탐색] 백준 1024번 : 수열의 합 (0) | 2020.02.02 |
[C++] [탐색] 백준 1100번 : 하얀 칸 (0) | 2020.02.02 |
[C++] [탐색] 백준 1026번 : 보물 (0) | 2020.02.02 |
[C++] [탐색] 백준 1316번 : 그룹 단어 체커 (0) | 2020.02.02 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- java
- 상속
- 다형성
- 추상화
- java 환경설정
- .
- MVC
- Update
- JdbcTemplate
- 객체지향
- JDBC 프로그램 작성단계
- Scott/Tiger
- select
- Delete
- 객체
- model
- Oracle
- 캡슐화
- controller
- OOP
- INSERT
- view
- ojdbc6.jar
- jdbc
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함