結果

問題 No.129 お年玉(2)
ユーザー kotatsugamekotatsugame
提出日時 2017-07-15 07:20:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2,411 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 64,512 KB
実行使用メモリ 433,024 KB
最終ジャッジ日時 2024-11-28 00:58:40
合計ジャッジ時間 51,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
31,616 KB
testcase_01 AC 2,294 ms
433,024 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 837 ms
188,160 KB
testcase_06 AC 1,467 ms
288,640 KB
testcase_07 AC 1,906 ms
350,592 KB
testcase_08 AC 1,241 ms
243,456 KB
testcase_09 AC 1,700 ms
323,968 KB
testcase_10 AC 1,960 ms
362,368 KB
testcase_11 AC 1,093 ms
234,752 KB
testcase_12 AC 1,529 ms
301,696 KB
testcase_13 AC 1,652 ms
314,880 KB
testcase_14 AC 1,545 ms
304,896 KB
testcase_15 AC 1,241 ms
253,440 KB
testcase_16 AC 1,485 ms
286,464 KB
testcase_17 AC 1,819 ms
343,552 KB
testcase_18 AC 1,753 ms
324,992 KB
testcase_19 AC 1,859 ms
345,856 KB
testcase_20 AC 1,819 ms
343,424 KB
testcase_21 AC 2,361 ms
424,320 KB
testcase_22 AC 1,147 ms
246,400 KB
testcase_23 AC 2,023 ms
373,248 KB
testcase_24 AC 1,927 ms
358,912 KB
testcase_25 AC 1,118 ms
235,776 KB
testcase_26 AC 1,166 ms
241,536 KB
testcase_27 AC 1,092 ms
234,752 KB
testcase_28 AC 2,411 ms
428,160 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 10 ms
8,832 KB
testcase_34 AC 5 ms
5,888 KB
testcase_35 AC 11 ms
8,192 KB
testcase_36 AC 11 ms
8,704 KB
testcase_37 AC 13 ms
9,984 KB
testcase_38 AC 192 ms
58,112 KB
testcase_39 AC 312 ms
84,224 KB
testcase_40 AC 997 ms
219,648 KB
testcase_41 AC 578 ms
138,624 KB
testcase_42 AC 220 ms
64,896 KB
testcase_43 AC 210 ms
63,872 KB
testcase_44 AC 2,348 ms
429,312 KB
testcase_45 AC 102 ms
38,912 KB
testcase_46 AC 367 ms
93,056 KB
testcase_47 AC 2,188 ms
416,768 KB
testcase_48 AC 1,262 ms
256,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
long n,m,M=1e9,a[10001][10001];
main()
{
	cin>>n>>m;n%=m*1000;n/=1000;
	for(int i=0;i<=m;i++)for(int j=0;j<=i;j++)
	{
		if(j==0||j==i)a[i-j][j]=1;
		else a[i-j][j]=(a[i-j][j]+(i-j-1>=0?a[i-j-1][j]:0)+(j-1>=0?a[i-j][j-1]:0))%M;
	}
	cout<<a[m-n][n]<<endl;
}
0