結果

問題 No.129 お年玉(2)
ユーザー 沙耶花沙耶花
提出日時 2021-10-26 23:55:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 534 bytes
コンパイル時間 4,708 ms
コンパイル使用メモリ 261,536 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-06 08:00:05
合計ジャッジ時間 8,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,820 KB
testcase_01 AC 156 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 58 ms
6,820 KB
testcase_06 AC 90 ms
6,820 KB
testcase_07 AC 109 ms
6,820 KB
testcase_08 AC 75 ms
6,816 KB
testcase_09 AC 99 ms
6,816 KB
testcase_10 AC 110 ms
6,820 KB
testcase_11 AC 70 ms
6,820 KB
testcase_12 AC 91 ms
6,816 KB
testcase_13 AC 99 ms
6,820 KB
testcase_14 AC 94 ms
6,816 KB
testcase_15 AC 76 ms
6,820 KB
testcase_16 AC 88 ms
6,816 KB
testcase_17 AC 107 ms
6,816 KB
testcase_18 AC 103 ms
6,816 KB
testcase_19 AC 113 ms
6,816 KB
testcase_20 AC 109 ms
6,816 KB
testcase_21 AC 135 ms
6,816 KB
testcase_22 AC 77 ms
6,816 KB
testcase_23 AC 116 ms
6,816 KB
testcase_24 AC 117 ms
6,816 KB
testcase_25 AC 71 ms
6,820 KB
testcase_26 AC 73 ms
6,816 KB
testcase_27 AC 73 ms
6,820 KB
testcase_28 AC 137 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 1 ms
6,816 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 3 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 16 ms
6,820 KB
testcase_39 AC 24 ms
6,816 KB
testcase_40 AC 67 ms
6,816 KB
testcase_41 AC 41 ms
6,816 KB
testcase_42 AC 18 ms
6,820 KB
testcase_43 AC 18 ms
6,816 KB
testcase_44 AC 148 ms
6,816 KB
testcase_45 AC 12 ms
6,816 KB
testcase_46 AC 30 ms
6,816 KB
testcase_47 AC 143 ms
6,820 KB
testcase_48 AC 82 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000


int main(){
	
	long long n,m;
	cin>>n>>m;
	
	n /= 1000;
	
	int ans = n%m;
	
	vector<int> dp(1,1);
	
	rep(i,m){
		vector<int> ndp(dp.size()+1,0);
		rep(j,dp.size()){
			ndp[j] += dp[j];
			ndp[j] %= 1000000000;
			ndp[j+1] += dp[j];
			ndp[j+1] %= 1000000000;
		}
		swap(dp,ndp);
	}
	cout<<dp[ans]<<endl;
	
	return 0;
}
0