백준 23037번: 5의 수난 #Python

ColorlessDia·2024년 11월 20일

algorithm/baekjoon

목록 보기
367/812
from math import pow

print(sum(map(lambda x: int(pow(int(x), 5)), list(input()))))

0개의 댓글