[백준] #1731 추론 python
2023. 2. 8. 06:00
https://www.acmicpc.net/problem/1731
📕 설명 📕
공차인 경우와 공비인 경우를 판별하여 풀이한다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
N_list = []
tmp = []
div = []
for i in range(N):
N_list.append(int(input()))
if i > 0:
tmp.append(N_list[i] - N_list[i-1])
div.append(N_list[i] // N_list[i-1])
if len(list(set(tmp))) == 1:
print(N_list[N-1] + tmp[0])
else:
print(N_list[N-1] * div[0])
'Programming > Algorithm' 카테고리의 다른 글
[백준] #5691 평균 중앙값 문제 python (0) | 2023.02.10 |
---|---|
[백준] #1259 팰린드롬수 python (0) | 2023.02.09 |
[백준] #10162 전자레인지 python (0) | 2023.02.07 |
[백준] #11557 Yangjojang of The Year python (0) | 2023.02.06 |
[백준] #5988 홀수일까 짝수일까 python (0) | 2023.02.05 |