結果

問題 No.269 見栄っ張りの募金活動
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-08 00:25:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-10-08 00:25:54
合計ジャッジ時間 3,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 41 ms
51,200 KB
testcase_03 AC 58 ms
63,616 KB
testcase_04 AC 110 ms
78,592 KB
testcase_05 AC 57 ms
59,136 KB
testcase_06 AC 44 ms
57,728 KB
testcase_07 AC 189 ms
81,152 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 37 ms
51,456 KB
testcase_11 AC 60 ms
72,320 KB
testcase_12 AC 40 ms
51,584 KB
testcase_13 AC 70 ms
75,136 KB
testcase_14 AC 50 ms
63,872 KB
testcase_15 AC 68 ms
75,264 KB
testcase_16 AC 38 ms
51,200 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 99 ms
76,032 KB
testcase_19 AC 64 ms
73,344 KB
testcase_20 AC 67 ms
63,744 KB
testcase_21 AC 51 ms
64,640 KB
testcase_22 AC 59 ms
69,248 KB
testcase_23 AC 46 ms
59,520 KB
testcase_24 AC 53 ms
65,408 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(1, N+1):
    nex = [0] * (S+1)
    cum = [[0] for _ in range(i)]
    for j, d in enumerate(dp):
        cum[j%i].append((cum[j%i][-1] + d) % mod)
    
    for j in range(S+1):
        nex[j] = cum[j%i][1+j//i]
    dp = nex

print(dp[-1])
0