1. 문제 https://www.acmicpc.net/problem/1024 1024번: 수열의 합 첫째 줄에 N과 L이 주어진다. N은 1,000,000,000보다 작거나 같은 자연수이고, L은 2보다 크거나 같고, 100보다 작거나 같은 자연수이다. www.acmicpc.net 2. 풀이 import sys input = sys.stdin.readline from collections import deque n, l = map(int, input().split()) n_l = deque() iter_b = True for i in range(l, 101): if iter_b == False: break n_l.clear() temp = n // i n_l.append(temp) if i % 2 == ..