標準c++9095 1、2、3プラス
9095 1,2,3プラス
問題を解く
#include <iostream>
using namespace std;
void fast_io(void)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
int n,t,arr[12];
int main(void)
{
fast_io();
cin >> t;
arr[1] = 1;
arr[2] = 2;
arr[3] = 4;
for (int i = 4; i < 12;i++)
arr[i] = arr[i - 3] + arr[i - 2] + arr[i - 1];
while(t--)
{
cin >> n;
cout << arr[n] << "\n";
}
}
1、2、3の方法の数を入れ、入力できる数を予め記入します.出力値を入力します.
Reference
この問題について(標準c++9095 1、2、3プラス), 我々は、より多くの情報をここで見つけました https://velog.io/@jaranda/백준-c-9095-123-더하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol