for문1 백준 기초(for 문) 2739번 여담이지만 난 아직도 구구단을 외우기보다는 그때 그때 계산해서 쓰는편이다 그래서 사칙연산이 느림 A = int(input()) for i in range(1, 10): print("{0} * {1} = {2}".format(A, i, i*A)) 10950번 count = int(input()) for i in range(0, count): plusA, plusB = map(int, input().split()) print(plusA + plusB) 8393번 이거 언어 성능 테스트할때 쓰는거 아닌가 count = int(input()) total = 0 for i in range(0, count+1): total += i print(total) 15552번 파이썬에서 빠르게 입력받으려면 sys.. 2020. 12. 18. 이전 1 다음