結果

問題 No.269 見栄っ張りの募金活動
ユーザー なつねこなつねこ
提出日時 2022-02-25 22:39:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,392 KB
最終ジャッジ日時 2024-07-03 17:35:31
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,276 KB
testcase_01 AC 35 ms
52,724 KB
testcase_02 AC 41 ms
60,312 KB
testcase_03 AC 46 ms
62,176 KB
testcase_04 AC 57 ms
67,712 KB
testcase_05 AC 40 ms
59,300 KB
testcase_06 AC 35 ms
52,556 KB
testcase_07 AC 78 ms
76,392 KB
testcase_08 AC 36 ms
53,876 KB
testcase_09 AC 57 ms
67,828 KB
testcase_10 AC 40 ms
59,836 KB
testcase_11 AC 46 ms
62,660 KB
testcase_12 AC 54 ms
66,476 KB
testcase_13 AC 46 ms
62,152 KB
testcase_14 AC 40 ms
59,772 KB
testcase_15 AC 46 ms
63,240 KB
testcase_16 AC 53 ms
66,072 KB
testcase_17 AC 46 ms
61,840 KB
testcase_18 AC 67 ms
70,612 KB
testcase_19 AC 48 ms
63,968 KB
testcase_20 AC 44 ms
59,828 KB
testcase_21 AC 43 ms
61,096 KB
testcase_22 AC 45 ms
61,640 KB
testcase_23 AC 43 ms
60,740 KB
testcase_24 AC 44 ms
60,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,K = map(int,input().split())
prev = (N**2-N)//2*K
mod = 10**9 + 7
DP = [[1 for j in range(S+1)] for i in range(N)]
for i in range(1,N):
  for j in range(S+1):
    if i < j:
      DP[i][j] = (DP[i][j-i-1] + DP[i-1][j])%mod
    else:
      DP[i][j] = DP[i-1][j]
#print(DP)
if prev > S:
  print('0')
else:
  print(DP[N-1][S-prev])
0