Home
Justnote
Cancel

[Python] 백준 11021번 : A+B - 7

Problem https://www.acmicpc.net/problem/11021 Solution 주어진 횟수를 통해 for문을 구성하였다. print문의 양식이 복잡하기 때문에 문자열 포맷팅을 활용하여 표현하였다. code a = int(input()) for i in range(a): b = list(map(int, input().spl...

[Python] 백준 1110번 : 더하기 사이클

Problem https://www.acmicpc.net/problem/1110 Solution a = int(input()) n = 0 b = a k=100 while k != a: if 0<b<10: while b<10: b*=11 k=b n+...

[Python] 백준 11050번 : 이항 계수 1

Problem https://www.acmicpc.net/problem/11050 Solution math 모듈을 import 해서 해결했다. code import math a = list(map(int,input().split())) n = a[0] k = a[1] cal = math.factorial(n)/(math.factorial(n-k)...

[Python] 백준 10952번 : A+B - 5

Problem https://www.acmicpc.net/problem/10952 Solution while문을 사용해서 계속 입력받음. 문제의 조건인 입력값 0 0 일 때 프로그램을 종료시키는 부분은 if문에 적용함. code while True: a = list(map(int,input().split())) if a[0]==a[1...

[Python] 백준 1010번 : 다리 놓기

Problem https://www.acmicpc.net/problem/1010 Solution import math t = int(input()) for i in range(t): a = list(map(int,input().split())) k = a[0] n = a[1] cal = math.factorial(n)...

[Python] 백준 8958번 : OX퀴즈

Problem https://www.acmicpc.net/problem/8958 Solution 처음에 입력받은 값 5는 for문을 반복하는 횟수로 사용했다. 다음으로 입력받은 OX문자열은 X를 기준으로 split해서 리스트로 만들었다. 그렇게 되면 OOXXOXXOOO를 입력하면 리스트 a의 값은 ['OO', '', 'O', '', 'OOO']이 ...

[Python] 백준 1978번 : 소수찾기

Problem https://www.acmicpc.net/problem/1978 Solution qwe=input() a = list(map(int,input().split())) count=0 def prime_number(number): if number != 1: for f in range(...

[Python] 백준 2588번 : 곱셈

Problem https://www.acmicpc.net/problem/2588 Solution code1 a = int(input()) b = int(input()) print(a*(b%10)) print(a*(b%100-b%10)//10) print(a*(b-b%100)//100) print(a*b) 자리수 별로 나눠서 계산하는 방법이 직접...

[Python] 백준 11720번 : 숫자의 합

Problem https://www.acmicpc.net/problem/11720 Solution code a = int(input()) b = map(int,input()) sum = 0 for i in b: sum+=i print(sum) Memo 이해되지 않는 부분이 몇 가지 있다. line2를 b = map(int,input...

[Python] 백준 2577번 : 숫자의 개수

Problem https://www.acmicpc.net/problem/2577 Solution count함수를 활용해서 문자열 안의 숫자 여부를 카운팅 했다. mul = 1 for _ in range(3): mul*=int(input()) mul = str(mul) for i in range(10): print(mul.count(...