結果

問題 No.269 見栄っ張りの募金活動
ユーザー tmg_dayotmg_dayo
提出日時 2019-09-24 22:16:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-09-19 12:11:13
合計ジャッジ時間 3,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 44 ms
12,928 KB
testcase_04 AC 272 ms
39,040 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 684 ms
89,856 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 WA -
testcase_11 AC 77 ms
17,408 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 100 ms
19,968 KB
testcase_14 AC 42 ms
12,928 KB
testcase_15 AC 96 ms
19,456 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 244 ms
37,888 KB
testcase_19 AC 90 ms
18,816 KB
testcase_20 AC 41 ms
12,416 KB
testcase_21 AC 45 ms
13,184 KB
testcase_22 AC 67 ms
16,000 KB
testcase_23 AC 30 ms
11,264 KB
testcase_24 AC 51 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n,s,k=map(int,input().split())
    s=s-(k*n*(n-1))//2
    M=10**9+7
    if s<=0:
        print(0)
    else:
        dp=[[1]*n for _ in [0]*(s+1)]
        for i in range(1,s+1):
            for j in range(n):
                if j==0:
                    dp[i][j]=dp[i-1][j]
                elif i-j-1<0:
                    dp[i][j]=dp[i][j-1]
                else:
                    dp[i][j]=(dp[i][j-1]+dp[i-j-1][j])%M        
        print(dp[s][n-1])
    
if __name__ == '__main__':
	main()
0