結果

問題 No.741 AscNumber(Easy)
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2018-10-07 17:36:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 784 ms
コンパイル使用メモリ 92,476 KB
実行使用メモリ 128,640 KB
最終ジャッジ日時 2024-10-12 14:15:28
合計ジャッジ時間 6,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 284 ms
122,624 KB
testcase_36 AC 123 ms
55,296 KB
testcase_37 AC 143 ms
64,640 KB
testcase_38 AC 144 ms
63,744 KB
testcase_39 AC 125 ms
54,400 KB
testcase_40 AC 163 ms
72,704 KB
testcase_41 AC 253 ms
112,128 KB
testcase_42 AC 136 ms
60,928 KB
testcase_43 AC 99 ms
44,928 KB
testcase_44 AC 203 ms
88,448 KB
testcase_45 AC 217 ms
95,104 KB
testcase_46 AC 266 ms
116,736 KB
testcase_47 AC 47 ms
22,656 KB
testcase_48 AC 268 ms
116,864 KB
testcase_49 AC 223 ms
98,176 KB
testcase_50 AC 33 ms
16,256 KB
testcase_51 AC 106 ms
47,232 KB
testcase_52 AC 302 ms
128,640 KB
testcase_53 AC 297 ms
128,512 KB
testcase_54 AC 297 ms
127,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <unordered_map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

long long A[1000000+10][10] = {0};

long long func( long long n, long long r ) {

    if ( A[n][r] ) { return A[n][r]; }

    if ( n/2 < r ) { r = n-r; }
    if ( r == 0 ) { return 1; }

    A[n][r] = ( func(n-1,r)+func(n-1,r-1) )%MOD;
    return A[n][r];

}

int main() {
    
    long long N;
    cin >> N;

    cout << func( N+9, 9 ) << endl;

    return 0;
}
0