結果

問題 No.1238 選抜クラス
ユーザー uni_pythonuni_python
提出日時 2020-09-25 21:48:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 70,124 KB
最終ジャッジ日時 2024-06-28 06:21:49
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,500 KB
testcase_01 AC 46 ms
60,068 KB
testcase_02 AC 49 ms
61,748 KB
testcase_03 AC 45 ms
58,904 KB
testcase_04 AC 45 ms
59,852 KB
testcase_05 AC 44 ms
59,600 KB
testcase_06 AC 45 ms
59,664 KB
testcase_07 AC 48 ms
60,208 KB
testcase_08 AC 49 ms
60,220 KB
testcase_09 AC 51 ms
61,512 KB
testcase_10 AC 48 ms
60,296 KB
testcase_11 AC 52 ms
61,612 KB
testcase_12 AC 50 ms
60,296 KB
testcase_13 AC 50 ms
60,224 KB
testcase_14 AC 49 ms
60,568 KB
testcase_15 AC 53 ms
61,128 KB
testcase_16 AC 51 ms
61,956 KB
testcase_17 AC 94 ms
68,460 KB
testcase_18 AC 93 ms
68,700 KB
testcase_19 AC 95 ms
69,816 KB
testcase_20 AC 91 ms
68,076 KB
testcase_21 AC 90 ms
68,848 KB
testcase_22 AC 95 ms
68,488 KB
testcase_23 AC 95 ms
70,124 KB
testcase_24 AC 95 ms
68,080 KB
testcase_25 AC 94 ms
68,868 KB
testcase_26 AC 93 ms
69,328 KB
testcase_27 AC 94 ms
69,420 KB
testcase_28 AC 94 ms
68,952 KB
testcase_29 AC 95 ms
69,936 KB
testcase_30 AC 60 ms
61,844 KB
testcase_31 AC 71 ms
65,896 KB
testcase_32 AC 83 ms
67,720 KB
testcase_33 AC 46 ms
59,820 KB
testcase_34 AC 88 ms
67,476 KB
testcase_35 AC 66 ms
64,728 KB
testcase_36 AC 53 ms
61,324 KB
testcase_37 AC 62 ms
62,016 KB
testcase_38 AC 93 ms
69,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,K=MI()
    A=LI()
    A.sort(reverse=True)
    for i in range(N):
        A[i]-=K
        
    M=11000
    dp=[[0]*(M+1) for _ in range(N+1)]
    # i番目まで見てプラスj点を何通り作れるか
    dp[0][0]=1
    
    for i in range(N):
        a=A[i]
        for j in range(M-200):
            dp[i+1][j]+=dp[i][j]
            dp[i+1][j] %=mod
            if a+j>=0:
                dp[i+1][j+a]+=dp[i][j]
                dp[i+1][j+a]%=mod
                
    ans=0
    for j in range(M):
        ans+=dp[-1][j]
        ans%=mod
        
    print(ans-1)
                
                
    


main()
0