-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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32801번 Generalized FizzBuzz (1) | 2024.11.29 |
---|---|
[백준/파이썬] 18154번 Speeding (0) | 2024.11.28 |
[백준/파이썬] 32710번 구구단표 (0) | 2024.11.26 |
[백준/파이썬] 32364번 Hat Circle (0) | 2024.11.25 |
[백준/파이썬] 32795번 Intuitive Elements (0) | 2024.11.24 |