백준 15596번: 정수 N개의 합 함수 만들기
- Python 2, Python 3, PyPy, PyPy3: def solve(a: list) -> int
- a: 합을 구해야 하는 정수 n개가 저장되어 있는 리스트 (0 ≤ a[i] ≤ 1,000,000, 1 ≤ n ≤ 3,000,000)
- 리턴값: a에 포함되어 있는 정수 n개의 합 (정수)
[ref] https://www.acmicpc.net/problem/15596
def solve(a):
ans = 0
for i in a:
ans += i
return ans
백준 4673번
def self_num():
l = []
list_out = []
for i in range(10000):
l.append(i+1)
list_out.append(i+1)
for v in l:
out = v
for c in str(v):
out += int(c)
if out in list_out:
list_out.remove(out)
for j in list_out:
print(j)
self_num()
백준 1065번
def hansu():
N=int(input())
num=0
for i in range(N):
L = str(i+1)
if len(L) <= 2:
num +=1
elif int(L[1])-int(L[0]) == int(L[2])-int(L[1]):
num+=1
print(num)
hansu()
'백준 단계별 코딩 테스트' 카테고리의 다른 글
문자열 2 (0) | 2021.09.30 |
---|---|
문자열 1 (0) | 2021.09.20 |
1차원 배열 2 (0) | 2021.09.12 |
1차원 배열 문제 1 (0) | 2021.09.10 |
While 문 (0) | 2021.09.07 |