백준 23037 5의 수난

Yesol Lee·2022년 5월 27일
0

알고리즘

목록 보기
24/31
post-custom-banner

백준 23037 5의 수난

문제

다섯자리 양의 정수 n을 입력받아 각 자릿수에 다섯제곱한 합을 출력

코드

print(sum(map(lambda x: int(x)**5, list(input()))))
  • list로 안 감싸고 input()만 해도 됨..ㅠ
profile
문서화를 좋아하는 개발자

0개의 댓글