結果

問題 No.129 お年玉(2)
ユーザー kotatsugamekotatsugame
提出日時 2019-01-27 16:07:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 795 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 65,196 KB
実行使用メモリ 237,056 KB
最終ジャッジ日時 2024-05-05 23:58:41
合計ジャッジ時間 18,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
21,888 KB
testcase_01 AC 795 ms
237,056 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 302 ms
108,416 KB
testcase_06 AC 480 ms
162,432 KB
testcase_07 AC 621 ms
194,560 KB
testcase_08 AC 398 ms
138,368 KB
testcase_09 AC 546 ms
180,480 KB
testcase_10 AC 637 ms
200,960 KB
testcase_11 AC 375 ms
133,248 KB
testcase_12 AC 503 ms
169,216 KB
testcase_13 AC 529 ms
175,744 KB
testcase_14 AC 513 ms
170,496 KB
testcase_15 AC 409 ms
143,232 KB
testcase_16 AC 482 ms
160,768 KB
testcase_17 AC 580 ms
191,488 KB
testcase_18 AC 549 ms
181,120 KB
testcase_19 AC 588 ms
192,128 KB
testcase_20 AC 589 ms
190,976 KB
testcase_21 AC 762 ms
232,192 KB
testcase_22 AC 407 ms
139,520 KB
testcase_23 AC 642 ms
206,464 KB
testcase_24 AC 627 ms
199,552 KB
testcase_25 AC 374 ms
134,400 KB
testcase_26 AC 393 ms
136,960 KB
testcase_27 AC 374 ms
133,248 KB
testcase_28 AC 769 ms
234,112 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 7 ms
7,808 KB
testcase_34 AC 3 ms
5,504 KB
testcase_35 AC 6 ms
7,296 KB
testcase_36 AC 7 ms
7,552 KB
testcase_37 AC 8 ms
8,704 KB
testcase_38 AC 88 ms
37,248 KB
testcase_39 AC 124 ms
52,224 KB
testcase_40 AC 354 ms
125,824 KB
testcase_41 AC 217 ms
82,176 KB
testcase_42 AC 96 ms
41,088 KB
testcase_43 AC 91 ms
40,576 KB
testcase_44 AC 785 ms
235,136 KB
testcase_45 AC 49 ms
26,368 KB
testcase_46 AC 137 ms
56,960 KB
testcase_47 AC 751 ms
228,480 KB
testcase_48 AC 416 ms
145,280 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;int M=1e9,a[10001][10001];
main()
{
	cin>>n>>m;n/=1000;n%=m;
	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]-M:0)+(j-1>=0?a[i-j][j-1]-M:0);
			while(a[i-j][j]<0)a[i-j][j]+=M;
		}
	}
	cout<<a[m-n][n]<<endl;
}
0