반응형

 

안녕하세요 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)

 

여러분도 한번 풀어보세요!

 

 

반응형

+ Recent posts