結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | googol_S0 |
提出日時 | 2020-05-11 11:38:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 260 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 84,136 KB |
最終ジャッジ日時 | 2024-07-18 07:32:44 |
合計ジャッジ時間 | 12,340 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 36 ms
52,608 KB |
testcase_02 | RE | - |
testcase_03 | AC | 62 ms
61,312 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 41 ms
60,032 KB |
testcase_06 | AC | 33 ms
52,736 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
N,S,K=map(int,input().split()) S-=K*N*(N-1)//2-1 if S==0: print(1) exit() m=10**9+7 r=range D=[[0]*(S+1) for i in r(N+1)] D[0][0]=1 for i in r(N): for j in r(S): k=j while k<=S: D[i+1][k]=D[i][j]+D[i+1][k]%m k+=i+1 print(D[-1][S-1]%m)