-
[프로그래머스] 멀리 뛰기ALGORITHM/PROGRAMMERS 2021. 9. 7. 23:38
https://programmers.co.kr/learn/courses/30/lessons/12914
2021-09-07
123456789class Solution {public long solution(int n) {long[] dp = new long[n+1];dp[1] = 1;if(n >= 2) dp[2] = 2;for(int i = 3; i <= n; i++) dp[i] = (dp[i-1] + dp[i-2]) % 1234567;return dp[n];}}cs #문제풀이
dp[i] = dp[i-1] + dp[i-2]
'ALGORITHM > PROGRAMMERS' 카테고리의 다른 글
[프로그래머스] 음양 더하기 (월간 코드 챌린지 시즌2) (0) 2021.09.13 [프로그래머스] 없는 숫자 더하기 (월간 코드 챌린지 시즌3) (0) 2021.09.13 [프로그래머스] 야근 지수 (0) 2021.09.06 [프로그래머스] 여행경로 (0) 2021.09.06 [프로그래머스] 위클리 챌린지 6주차 (0) 2021.09.06