結果

問題 No.786 京都大学の過去問
ユーザー yosimusakunyosimusakun
提出日時 2019-06-09 17:26:18
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 389 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 53,628 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-06 00:11:26
合計ジャッジ時間 5,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1,334 ms
5,248 KB
testcase_03 TLE -
testcase_04 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int Calc(int maxFloor,int carrent){
    static int patterns = 1;
    if(carrent + 1 < maxFloor){
        Calc(maxFloor,++carrent);
        patterns++;
    }
    if(carrent + 2 < maxFloor){
        return Calc(maxFloor,++carrent);
    }
    return patterns;
}

int main(){
    unsigned int floor = 0;
    cin >> floor;
    cout << Calc(floor,0);
}
0