sueleesoossoo's devlog


  • Home

  • Categories

  • About

  • Archives

  • Tags

[알각코] 백준 2588번 - 곱셈 문제

Posted on 2021-07-21 | In Algo , TIL | comments

백준 2588번

first = input()
second = input()

temp = []

for i in range(0, len(second)):
    temp.append(int(second[i]) * int(first))

temp.reverse()
temp.append(int(first)*int(second))

print('\n'.join([str(x) for x in temp]))

Screen Shot 2021-07-22 at 7 33 17 PM

# Algo
[알각코] 백준 2884번 - 알람 시계
맥 구매 후 첫 초기화 삽질
  • Table of Contents
  • Overview
LEESOO

LEESOO

Junior Frontend Developer

341 posts
12 categories
34 tags
RSS
GitHub
  1. 1 백준 2588번
© 2024 LEESOO
Powered by Jekyll
Theme - NexT.Muse