반응형
안녕하세요 Jin's 입니다.
백준 알고리즘의 함수 중 한수 ( 문제 번호 : 1065 )의 소스입니다.
Java와 Python 두가지 버전 소스입니다.
1) JAVA
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
scan.close();
int result = 0;
if(n<100){
result=n;
}else{
result = 99;
for(int i=100; i<=n;i++){
int a = i/100;
int b = i/10%10;
int c = i%10;
if(b*2 == a+c){
result++;
}
}
}
System.out.println(result);
}
}
2) PYTHON
n = int(input())
result = 0
if n < 100:
result = n
else :
result = 99
for i in range(100, n+1):
if 2*(i // 10 % 10) == i // 100 + i % 10:
result += 1
print(result)
여러분도 한번 풀어보세요!
반응형
'Development > 알고리즘' 카테고리의 다른 글
[ 백준 알고리즘 ] 11720번 숫자의 합 (JAVA/python) (0) | 2020.06.26 |
---|---|
[ 백준 알고리즘 ] 11654번 아스키 코드 (JAVA/python) (0) | 2020.06.25 |
[ 백준 알고리즘 ] 4673번 셀프 넘버 (JAVA/python) (0) | 2020.06.23 |
[ 백준 알고리즘 ] 15596번 정수 N개의 합 (JAVA/python) (0) | 2020.06.04 |
[ 백준 알고리즘 ] 4344번 평균은 넘겠지 (JAVA/python) (0) | 2020.06.03 |