結果

問題 No.129 お年玉(2)
ユーザー kotatsugamekotatsugame
提出日時 2017-07-15 07:20:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,835 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 64,256 KB
実行使用メモリ 433,024 KB
最終ジャッジ日時 2024-05-05 23:35:40
合計ジャッジ時間 39,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
31,744 KB
testcase_01 AC 1,835 ms
433,024 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 620 ms
188,160 KB
testcase_06 AC 1,076 ms
288,640 KB
testcase_07 AC 1,403 ms
350,464 KB
testcase_08 AC 861 ms
243,456 KB
testcase_09 AC 1,257 ms
323,968 KB
testcase_10 AC 1,482 ms
362,624 KB
testcase_11 AC 817 ms
234,752 KB
testcase_12 AC 1,138 ms
301,824 KB
testcase_13 AC 1,205 ms
314,880 KB
testcase_14 AC 1,155 ms
305,024 KB
testcase_15 AC 922 ms
253,440 KB
testcase_16 AC 1,048 ms
286,464 KB
testcase_17 AC 1,359 ms
343,680 KB
testcase_18 AC 1,250 ms
324,864 KB
testcase_19 AC 1,358 ms
345,856 KB
testcase_20 AC 1,357 ms
343,296 KB
testcase_21 AC 1,779 ms
424,448 KB
testcase_22 AC 873 ms
246,656 KB
testcase_23 AC 1,500 ms
373,376 KB
testcase_24 AC 1,423 ms
358,912 KB
testcase_25 AC 819 ms
235,776 KB
testcase_26 AC 851 ms
241,536 KB
testcase_27 AC 819 ms
234,752 KB
testcase_28 AC 1,814 ms
428,032 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 11 ms
8,704 KB
testcase_34 AC 4 ms
5,888 KB
testcase_35 AC 9 ms
8,064 KB
testcase_36 AC 10 ms
8,832 KB
testcase_37 AC 13 ms
9,984 KB
testcase_38 AC 159 ms
58,112 KB
testcase_39 AC 238 ms
84,352 KB
testcase_40 AC 761 ms
219,520 KB
testcase_41 AC 409 ms
138,624 KB
testcase_42 AC 182 ms
65,024 KB
testcase_43 AC 178 ms
63,872 KB
testcase_44 AC 1,817 ms
429,312 KB
testcase_45 AC 100 ms
38,912 KB
testcase_46 AC 264 ms
92,928 KB
testcase_47 AC 1,745 ms
416,768 KB
testcase_48 AC 919 ms
256,384 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