Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
[9095] 1,2,3 더하기 본문
728x90
1. 첫째 줄에 테스트 케이스 갯수를 입력받게 하는 점.
2. 두번째 줄 부터 하나씩 출력 가능해도 괜찮다는 점. 주의
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #include<iostream> using namespace std; int input; int re() { int dp[11]; dp[1] = 1; dp[2] = 2; dp[3] = 4; for (int i = 4; i < 11; i++) { dp[i] = dp[i - 3] + dp[i - 2] + dp[i - 1]; } return dp[input]; } int main() { int test_case; cin >> test_case; for (int i = 0; i < test_case; i++) { cin >> input; cout << re() << endl; } } | cs |
'[IT] > 백준' 카테고리의 다른 글
[백준] N과 M (2) (0) | 2019.04.01 |
---|---|
[백준] 암호 만들기 (0) | 2019.04.01 |
[백준] 외판원 순회 2 (0) | 2019.04.01 |
[11726] 2xn 타일링 문제 (0) | 2018.09.01 |
[알고리즘]'나는 요리사다' 문제 (0) | 2018.04.06 |
Comments