👩💻 [문제]
비밀번호 P가 123 이고 주어지는 번호 K가 100 일 때, 100부터 123까지 24번 확인하여 비밀번호를 맞출 수 있다.
P와 K가 주어지면 K부터 시작하여 몇 번 만에 P를 맞출 수 있는지 알아보자.
[input]
123 100
[output]
24
import sys
sys.stdin = open("input.txt")
# input으로 들어오는 값을 각각의 변수에 저장
password, given_number = map(int,input().split())
# given_number가 password에 가까워 질 때 까지
# while문의 given_number을 1씩 증가시키며 돌린다.
count=0
while password >= given_number:
given_number+=1
count+=1
print(count)
'# 3. APS > SWEA' 카테고리의 다른 글
SWEA # Python_D1_2025_N줄덧셈 ✅ (0) | 2021.02.15 |
---|---|
SWEA # Python_D1_2027_대각선 출력하기 ✅ (0) | 2021.02.15 |
SWEA # Python_D1_1936_1대1 가위바위보 ✅ (0) | 2021.02.14 |
SWEA # Python_D1_1933_간단한 N 의 약수 ✅ (0) | 2021.02.14 |
SWEA # Python_D1_2050_알파벳을 숫자로 변환 ✅ (0) | 2021.02.14 |