sw expert academy-2046. スタンプ


に答える

  • pythonは文字列*数字の場合、文字は数字で
  • 繰り返します.

    コード#コード#

    # https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=1&contestProbId=AV5QKdT6AyYDFAUq&categoryId=AV5QKdT6AyYDFAUq&categoryType=CODE&problemTitle=&orderBy=FIRST_REG_DATETIME&selectCodeLang=PYTHON&select-1=1&pageSize=10&pageIndex=1&&&&&&&&&&
    # sw expert academy, d1: 2046. 스탬프 찍기, python3
    def solve(n: int) -> str:
        return '#' * n
    
    if __name__ == '__main__':
        n = int(input())
    
        print(solve(n))

    結果



    ソース&ハーブ


    2046.捺印
    github