[백준][Python]16394 - 홍익대학교
2024. 7. 13. 23:17
백준/Python
https://www.acmicpc.net/problem/16394 print(int(input()) - 1946)print(int(input()) - 1946) 홍익대학교는 1946년에 개교하였다.특정 년도가 주어졌을 때, 그 해가 개교 몇 주년인지 출력하라. 사용자로부터 정수를 입력받고 -1946 을 하면 몆주년인지 구할 수 있습니다.
[백준][Python]15680 - 연세대학교
2024. 7. 11. 17:31
백준/Python
https://www.acmicpc.net/problem/15680 data = input()if data == '0': print("YONSEI")elif data == '1': print("Leading the Way to the Future")연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다.N = 0일 경우: 연세대학교의 영문명을 출력한다. N = 1일 경우: 연세대학교의 슬로건을 출력한다.data = input()사용자로부터 값을 입력 받아 변수 `data`에 대입합니다. if data == '0': print("YONSEI")elif data == '1': print("Leading the Way to the Future..
[백준][Python] 4999 - 아!
2024. 7. 10. 22:50
백준/Python
https://www.acmicpc.net/problem/4999jaehwan = input()doctor = input()if len(jaehwan) >= len(doctor) : print("go")else: print("no")jaehwan = input()doctor = input()사용자로부터 값을 입력 받아 재환과 의사에게 대입합니다. if len(jaehwan) >= len(doctor) : print("go")else: print("no") 각각의 의사는 재환이에게 특정한 길이의 "aah"를 말해보라고 요청한다. 어떤 의사는 "aaaaaah"를 요구하기도 하고, "h"만 요구하는 의사도 있다.모든 의사는 자신이 원하는 길이의 "aah"를 듣지 못하면 진단을 내릴 수 없..
[백준][Python] 27433 - 팩토리얼 2
2024. 7. 7. 22:04
백준/Python
https://www.acmicpc.net/problem/27433 N = int(input())if N == 0: print(1)else: result = 1 for index in range(2, N+1): result *= index print(result)N = int(input())if N == 0: print(1)사용자로부터 숫자를 입력 받아 N에 정수형으로 대입합니다.만약 사용자가 입력한 값이 0이라면 1을 출력하고 끝납니다. 팩토리얼(차례곱)은 그 수보다 작거나 같은 모든 양의 정수의 곱입니다.예를 들자면 5!는 5 * 4 * 3 * 2 * 1 이 되고, 5 * 4! 라고 표현할 수 있습니다.다만 1! 은 1이 됩니다. 위에서 말했듯, 팩토리얼은 그 ..
[백준][Python] 1336 - 두 수 비교하기
2024. 7. 2. 23:41
백준/Python
https://www.acmicpc.net/problem/1330A, B = map(int, input().split())if (A > B): print('>')elif (A A, B = map(int, input().split())공백을 기준으로 A와 B를 정수형으로 입력 받습니다. if (A > B): print('>')A가 B보다 크다면 > 출력 elif (A A가 B보다 작다면 else: print('==')그 외 경우는 두 값이 같을 것이므로 == 출력합니다.