-
[준비운동 PART1. 튼튼한 기본기] 쉽게 푸는 문제 (1292번)🧠𝗔𝗹𝗴𝗼𝗿𝗶𝘁𝗵𝗺/💛 백준 2021. 7. 2. 12:08
1. 문제 설명
https://www.acmicpc.net/problem/1292
2. 나의 풀이
(1) 틀린 코드.. 왜일까? 🤔테스트케이스는 통과했으나 백준 통과 못함.
a, b = map(int, input().split()) answer = 0 problem = '' for i in range(1, b+1): problem += str(i)*i answer_str = problem[a-1:b] for i in range(len(answer_str)): answer += int(answer_str[i]) print(answer)
(2) 정답 코드
a, b = map(int, input().split()) problem = [] for i in range(1, b+1): problem += [i]*i print(sum(problem[a-1:b]))
3. 깨달은점
[0]*10 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
[1, 2, 3]*3 = [1, 2, 3, 1, 2, 3, 1, 2, 3]
'🧠𝗔𝗹𝗴𝗼𝗿𝗶𝘁𝗵𝗺 > 💛 백준' 카테고리의 다른 글
[최고빈출 DFS, BFS 기본문제] 전쟁-전투 (0) 2021.07.02 [최고빈출 DFS, BFS 기본문제] DFS와 BFS(1260번) (0) 2021.07.02 [준비운동 PART1. 튼튼한 기본기] 소수 찾기(1978번) (0) 2021.07.02 [준비운동 PART1. 튼튼한 기본기] 소수(2581번) (0) 2021.07.02 [준비운동 PART1. 튼튼한 기본기] 최대공약수와 최소공배수(2609번) (0) 2021.07.01