結果

問題 No.269 見栄っ張りの募金活動
ユーザー 37zigen37zigen
提出日時 2016-03-26 16:11:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 840 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-07-16 01:52:43
合計ジャッジ時間 6,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,104 KB
testcase_01 AC 140 ms
53,964 KB
testcase_02 AC 137 ms
53,904 KB
testcase_03 AC 142 ms
53,888 KB
testcase_04 AC 157 ms
53,936 KB
testcase_05 AC 139 ms
53,924 KB
testcase_06 AC 142 ms
53,984 KB
testcase_07 AC 173 ms
53,944 KB
testcase_08 AC 141 ms
53,880 KB
testcase_09 AC 139 ms
53,848 KB
testcase_10 AC 140 ms
53,796 KB
testcase_11 AC 149 ms
54,144 KB
testcase_12 AC 140 ms
53,668 KB
testcase_13 AC 148 ms
53,872 KB
testcase_14 AC 144 ms
53,852 KB
testcase_15 AC 148 ms
53,908 KB
testcase_16 AC 139 ms
53,908 KB
testcase_17 AC 139 ms
53,980 KB
testcase_18 AC 154 ms
53,776 KB
testcase_19 AC 152 ms
53,976 KB
testcase_20 AC 141 ms
53,696 KB
testcase_21 AC 141 ms
53,964 KB
testcase_22 AC 150 ms
53,824 KB
testcase_23 AC 140 ms
54,004 KB
testcase_24 AC 143 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder269;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();//n人寄付
		int s=sc.nextInt();//ちょうどs円寄付しなければならない
		int k=sc.nextInt();//一つ前の生徒よりk円高い募金を
		//可能な寄付の仕方の組み合わせの数を10^9+1で割ったあまりを求める。
		sc.close();
		int mod=1000000007;
		s-=k*n*(n-1)*1/2;
		if(s<0){
			System.out.println(0);
			return;
		}else{
			int dp[]=new int[s+1];//dp[x]x円寄付する組み合わせ数
			dp[0]=1;
			for(int i=1;i<=n;i++){//i人目の寄付について
				for(int j=0;j+n-i+1<=s;j++){
					dp[j+(n-i+1)]+=dp[j];
					while(dp[j+(n-i+1)]>mod){
						dp[j+(n-i+1)]-=mod;
					}
				}
			}
			System.out.println(dp[s]);
		}
	}
}
0