結果

問題 No.269 見栄っ張りの募金活動
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-08 00:18:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 549 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-10-08 00:19:22
合計ジャッジ時間 22,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 67 ms
63,744 KB
testcase_04 AC 4,360 ms
79,448 KB
testcase_05 AC 51 ms
60,800 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 TLE -
testcase_08 AC 44 ms
59,392 KB
testcase_09 AC 38 ms
51,456 KB
testcase_10 AC 37 ms
51,584 KB
testcase_11 AC 1,942 ms
68,736 KB
testcase_12 AC 39 ms
51,200 KB
testcase_13 AC 933 ms
71,552 KB
testcase_14 AC 1,546 ms
63,104 KB
testcase_15 AC 1,285 ms
70,656 KB
testcase_16 AC 38 ms
51,456 KB
testcase_17 AC 38 ms
51,712 KB
testcase_18 AC 1,350 ms
75,648 KB
testcase_19 AC 467 ms
70,528 KB
testcase_20 AC 340 ms
62,976 KB
testcase_21 AC 1,410 ms
64,000 KB
testcase_22 AC 350 ms
66,560 KB
testcase_23 AC 55 ms
61,440 KB
testcase_24 AC 848 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1つ前の生徒との差分を xiとする
# x1 + x1+x2+K + x1+x2+K+x3+K + x1+x2+x3+2K+x4+K + ... = S
# <=> Nx1 + (N-1)x2 + (N-2)x3 + ... + xN + K*N(N-1)/2 = S


N, S, K = map(int, input().split())
mod = 10**9 + 7
S -= K*N*(N-1)//2
if S < 0:
    print(0)
    quit()

dp = [0] * (S+1)
dp[0] = 1
for i in range(N):
    c = N - i
    nex = [0] * (S+1)
    for j in range(S+1):
        for jj in range(0, S+1, c):
            if j + jj > S:
                break
            nex[j+jj] += dp[j]
            nex[j+jj] %= mod
    dp = nex

print(dp[-1])
0