結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 50 ms
12,928 KB
testcase_04 AC 291 ms
39,168 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 781 ms
89,728 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 92 ms
17,280 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 115 ms
19,968 KB
testcase_14 AC 51 ms
13,056 KB
testcase_15 AC 108 ms
19,200 KB
testcase_16 AC 32 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 279 ms
37,760 KB
testcase_19 AC 104 ms
18,688 KB
testcase_20 AC 47 ms
12,416 KB
testcase_21 AC 53 ms
13,312 KB
testcase_22 AC 78 ms
15,872 KB
testcase_23 AC 36 ms
11,264 KB
testcase_24 AC 57 ms
13,696 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