-Code
n = int(input())
pieces = list(map(int, input().split()))
m = int(input())
pos = list(map(int, input().split()))
for n in pos:
n = n - 1
if pieces[n] + 1 not in pieces:
pieces[n] += 1
if pieces[n] > 2019:
pieces[n] = 2019
for i in pieces:
print(i)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24077번 比較 (Comparison) (0) | 2023.06.30 |
---|---|
[백준/파이썬] 25773번 Number Maximization (0) | 2023.06.29 |
[백준/파이썬] 9913번 Max (0) | 2023.06.27 |
[백준/파이썬] 16032번 Income Inequality (0) | 2023.06.26 |
[백준/파이썬] 24080번 복잡한 문자열 (Complex String) (0) | 2023.06.25 |