結果

問題 No.129 お年玉(2)
ユーザー BantakoBantako
提出日時 2017-08-11 01:03:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 505 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 1,603 ms
コンパイル使用メモリ 166,108 KB
実行使用メモリ 236,800 KB
最終ジャッジ日時 2024-11-28 00:59:21
合計ジャッジ時間 14,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
22,016 KB
testcase_01 AC 505 ms
236,800 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 208 ms
108,544 KB
testcase_06 AC 343 ms
162,304 KB
testcase_07 AC 396 ms
194,688 KB
testcase_08 AC 274 ms
138,368 KB
testcase_09 AC 391 ms
180,608 KB
testcase_10 AC 404 ms
201,088 KB
testcase_11 AC 260 ms
133,248 KB
testcase_12 AC 356 ms
169,088 KB
testcase_13 AC 348 ms
176,000 KB
testcase_14 AC 336 ms
170,624 KB
testcase_15 AC 304 ms
143,488 KB
testcase_16 AC 321 ms
160,768 KB
testcase_17 AC 393 ms
191,360 KB
testcase_18 AC 360 ms
181,376 KB
testcase_19 AC 402 ms
192,256 KB
testcase_20 AC 408 ms
190,848 KB
testcase_21 AC 494 ms
232,192 KB
testcase_22 AC 296 ms
139,776 KB
testcase_23 AC 429 ms
206,592 KB
testcase_24 AC 404 ms
199,424 KB
testcase_25 AC 261 ms
134,144 KB
testcase_26 AC 279 ms
136,960 KB
testcase_27 AC 258 ms
133,376 KB
testcase_28 AC 480 ms
233,984 KB
testcase_29 AC 2 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 7 ms
7,680 KB
testcase_34 AC 4 ms
5,504 KB
testcase_35 AC 6 ms
7,168 KB
testcase_36 AC 8 ms
7,808 KB
testcase_37 AC 8 ms
8,448 KB
testcase_38 AC 62 ms
37,248 KB
testcase_39 AC 95 ms
51,968 KB
testcase_40 AC 264 ms
125,568 KB
testcase_41 AC 165 ms
81,920 KB
testcase_42 AC 75 ms
41,088 KB
testcase_43 AC 75 ms
40,448 KB
testcase_44 AC 496 ms
235,136 KB
testcase_45 AC 40 ms
26,368 KB
testcase_46 AC 102 ms
56,960 KB
testcase_47 AC 490 ms
228,352 KB
testcase_48 AC 281 ms
145,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int INF = 1e9;
int MOD = 1e9;
int dp[10010][10010];
main(){
    ll N,M;
    cin >> N >> M;
    dp[0][0] = 1;
    for(int i = 0;i <= M;i++){
        for(int j = 0;j <= i;j++){
            dp[i+1][j] = (dp[i+1][j] + dp[i][j])%MOD;
            dp[i+1][j+1] = (dp[i+1][j+1] + dp[i][j])%MOD;
        }
    }
    cout << dp[M][N/1000%M] << endl;
}
0