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

[백준/파이썬] 31880번 K512컵 개최!

by 현장 2025. 1. 13.

-Code

n, m = map(int, input().split())
a_list = map(int, input().split())
b_list = map(int, input().split())

res = sum(a_list)

for el in b_list:
    if el == 0:
        continue
    res *= el

print(res)