전체 글361 파이썬 코드업 1001번 1001 : [기초-출력] 출력하기01(설명) 문제 C/C++언어에서 가장 기본적인 명령이 출력문이다. printf()를 이용해 다음 단어를 출력하시오. Hello 풀이 과정 Python 내 print() 출력 함수를 이용하여 해당 문자열을 출력한다. 풀이 print("Hello") print("Hello") - print() 함수 내에 "Hello"를 입력한다. 문자열 출력을 위해서는 양 끝에 큰 따옴표 혹은 작은 따옴표가 필요하다. 2021. 3. 25. 파이썬 백준 13458번 시험 감독 풀이 과정 number=int(input()) students=list(map(int,input().split())) B,C = map(int,input().split()) idx=0 for i in students: students[idx]=i-B if students[idx] 2021. 3. 23. 파이썬 백준 2828번 사과 담기 게임 풀이 과정 N,M=map(int,input().split()) number=int(input()) x=1 y=M nx=0 ny=0 count=0 for i in range(number): new_apple=int(input()) if new_apple>=x and y>=new_apple: continue elif new_apple > y: count+=new_apple-y nx=x+(new_apple-y) ny=y+new_apple-y x=nx y=ny elif new_apple < x: count+=x-new_apple nx=x-(x-new_apple) ny=y-(x-new_apple) x=nx y=ny print(count) - 바구니를 x,y로 둔다. 이 범위를 벗어나면 바구니가 이동하도록 구현한다.. 2021. 2. 23. 파이썬 백준 13301번 수학 합 https://www.acmicpc.net/problem/13301 13301번: 타일 장식물 대구 달성공원에 놀러 온 지수는 최근에 새로 만든 타일 장식물을 보게 되었다. 타일 장식물은 정사각형 타일을 붙여 만든 형태였는데, 한 변이 1인 정사각형 타일부터 시작하여 마치 앵무조개 www.acmicpc.net 풀이 과정 def fibo(x): if x==0: return dictionary[x] elif x==1: return dictionary[x] if x in dictionary: return dictionary[x] else: dictionary[x]=fibo(x-1)+fibo(x-2) return dictionary[x] n=int(input()) dictionary={0:4, 1:6} prin.. 2021. 2. 20. 이전 1 ··· 84 85 86 87 88 89 90 91 다음