Note

[codeup] 97. 수 나열하기3 본문

etc/Coding Test

[codeup] 97. 수 나열하기3

알 수 없는 사용자 2021. 12. 27. 17:44
728x90
a,m,d,n = map(int, input().split())
for i in range(n-1):    
    a = a*m+d
print(a)

'etc > Coding Test' 카테고리의 다른 글

[codeup] 99. 이상한 출석 번호 부르기1  (0) 2021.12.29
[codeup] 98. 함께 문제 푸는 날  (0) 2021.12.28
[codeup] 96. 수 나열하기2  (0) 2021.12.26
[codeup] 95. 수 나열하기1  (0) 2021.12.25
[codeup] 94. 3의 배수는 통과  (0) 2021.12.24
Comments