結果

問題 No.44 DPなすごろく
ユーザー kiridarumakiridaruma
提出日時 2016-05-16 22:47:19
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 345 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 92,892 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-12 03:32:13
合計ジャッジ時間 8,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 678 ms
6,940 KB
testcase_03 AC 37 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 156 ms
6,948 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 154 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.string, std.conv;

int n;
ulong[] arr;

void main(){
    n = readln.strip.to!int;
    
    arr.length = n+1;
    
    hoge(0);
    
    arr[n].writeln;
    
}

void hoge(int num){
    if(num < n-1){
        arr[num + 2]++;
        hoge(num + 2);
    }
    if(num < n){
        arr[num + 1]++;
        hoge(num + 1);
    }
}
0