結果

問題 No.269 見栄っ張りの募金活動
ユーザー AEnAEn
提出日時 2023-05-27 01:51:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 5,000 ms
コード長 399 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-06-07 10:50:23
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 48 ms
60,288 KB
testcase_04 AC 67 ms
65,280 KB
testcase_05 AC 42 ms
58,624 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 105 ms
75,904 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
51,456 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 51 ms
60,544 KB
testcase_12 AC 38 ms
51,456 KB
testcase_13 AC 54 ms
61,440 KB
testcase_14 AC 48 ms
59,904 KB
testcase_15 AC 51 ms
61,184 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 38 ms
52,188 KB
testcase_18 AC 63 ms
65,024 KB
testcase_19 AC 51 ms
61,568 KB
testcase_20 AC 46 ms
59,904 KB
testcase_21 AC 46 ms
60,288 KB
testcase_22 AC 48 ms
60,288 KB
testcase_23 AC 44 ms
58,472 KB
testcase_24 AC 48 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S, K = map(int, input().split())

mod = 10**9+7
S -= K*N*(N-1)//2
if S<0:
    print(0)
elif S==0:
    print(1)
else:
    dp = [0]*(S+1)
    dp[0] = 1
    for i in range(N,0,-1):
        ndp = [0]*(S+1)
        sm = [0]*i
        for j in range(S+1):
            sm[j%i] += dp[j]
            sm[j%i] %= mod
            ndp[j] += sm[j%i]
            ndp[j] %= mod
        dp = ndp
    print(dp[-1])
0