본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 22113번 창영이와 버스

by 현장 2024. 11. 27.

-Code

n, m = map(int, input().split())
bus = list(map(int, input().split()))
total_cost = [list(map(int, input().split())) for _ in range(n)]
res = 0

for i in range(m - 1):
    res += total_cost[bus[i] - 1][bus[i + 1] - 1]

print(res)