백준 09524번 / 9524번 문제 링크
문제 이름 : Beautiful Yekaterinburg
주 언어 : Python
태그 : 구현
solved.ac 등급 : - (난이도를 매길 수 없음) (2023/03/22 확인)
문제 보기
문제 :
Yekaterinburg is a beautiful city founded in the eighteenth century. Your task in this problem is to give us information about the precise year of its foundation.
To make the task less overwhelming, you are only asked to calculate one of the four digits of the year. To indicate the position of the digit you must calculate, digits are numbered between 1 and 4, from the most significant to the least significant. As an example, for the year 2013 digit 1 is “2”, digit 2 is “0”, digit 3 is “1” and digit 4 is “3”.
In case you failed to bring an encyclopedia with you, information about Yekaterinburg may be obtained via a clarification.
(축약 & 번역) - 러시아 예카테린부르크의 설립 년도를 출력하십시오. 예를들어 설립 년도가 2013인데 입력이 1이면 2, 입력이 2이면 0, 입력이 3이면 1, 입력이 4이면 3을 출력하십시오.
입력 :
A single line that contains an integer D (1 ≤ D ≤ 4) indicating the position of the digit you must calculate.
(축약 & 번역) - 정수 D (1 ≤ D ≤ 4)가 입력된다.
출력 :
Output a line with an integer representing the digit at position D of the year Yekaterinburg was founded.
(축약 & 번역) - 입력받은 정수에 맞는 러시아 예카테린부르크의 설립 년도의 일부를 출력하시오.
참고자료 1
놀랍게도 1723년에 러시아의 표트르 대제의 아내 예카테리나에서 따온 이름이라고 합니다.
문자열로 미리 "01723" 을 만들어놓고, 입력받은 정수번째 문자를 출력해주도록 하면 됩니다.
여담으로 표트르 대제의 키가 203cm 였다고 합니다. 현대에 태어났다면 전설적인 농구선수가 되었을 듯 합니다.
이 문제와 비슷한 Text 언어로 풀 수 있는 문제들입니다.
다른 문제도 같이 풀어보시는걸 추천드립니다.
Text 문제들