Programming [Python] (411) 썸네일형 리스트형 #18 백준 파이썬 [2438] 별찍기 - 1 #18 백준[2438] 별찍기 - 1https://www.acmicpc.net/problem/2438 #18 [2438] Solutiona=int(input()) for i in range(1,a+1): print("*"*i) #17 백준 파이썬 [2739] 구구단 #17 백준[2739] 구구단https://www.acmicpc.net/problem/2839 #17 [2739] Solutiona=int(input()) for i in range(1,10): print("%d * %d = %d" %(a, i, a*i)) #16 백준 파이썬 [2742] 기찍 N #16 백준[2742] 기찍 Nhttps://www.acmicpc.net/problem/2742 #16 [2742] Solutiona=int(input()) for i in range(a): print(a-i) #15 백준 파이썬 [2741] N 찍기 #15 백준[2741] N 찍기https://www.acmicpc.net/problem/2741 #14 백준[2741] Solutiona=input() b=int(a) for i in range(b): print(i+1) #14 백준 파이썬 [2839] 설탕 배달 #14 백준[2839] 설탕 배달https://www.acmicpc.net/problem/2839 #14 [2839] Solution-Easy Codingorder = int(input()) if order % 5 == 0: print(order // 5) elif order % 5 == 3: print(order // 5 + 1) elif order // 5 - 1 >= 0 and order - (5 * (order // 5 - 1)) == 6: print((order // 5 - 1) + 2) elif order // 5 - 1 >= 0 and order - (5 * (order // 5 - 1)) == 9: print((order // 5 - 1) + 3) elif order // 5 - 2 >= .. #13 백준 파이썬 [2558] A+B-2 #13 [2558] A+B-2https://www.acmicpc.net/problem/2558 #13 [2558] Solutiona= int(input()) b= int(input()) print(a+b) #12 백준 파이썬 [10430] 나머지 #12 [10430] 나머지https://www.acmicpc.net/problem/10430 #12 [10430] Solutiona,b,c= map(int, input().split()) print((a+b)%c) print((a%c + b%c)%c) print((a*b)%c) print((a%c * b%c)%c) #11 백준 파이썬 [10869] 사칙연산 #11 [10869] 사칙연산https://www.acmicpc.net/problem/10869 #11 [10869] Solutiona,b= map(int, input().split()) print(a+b) print(a-b) print(a*b) print(a//b) print(a%b) 이전 1 ··· 47 48 49 50 51 52 다음