[백준/파이썬] 1225번

민정·2023년 1월 16일
0

[백준/파이썬]

목록 보기
31/245
post-thumbnail

백준 1225번

문제

https://www.acmicpc.net/problem/1225

코드

a , b = input().split()
a = list(map(int, a))
b = list(map(int, b))

print (sum(a)* sum(b))

풀이

#시간초과
a , b = map(list, input().split())
result = 0

for i in a:
    for j in b:
        result += int(i)*int(j)

print(result)

시간초과로 실패한 풀이

검색해보니 곱하고 더하는것이 아니라 더하고 곱하면 된다고 해서 코드를 변경했다. 결국 같은 값이기 때문에..!!..

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글