結果

問題 No.1238 選抜クラス
ユーザー googol_S0googol_S0
提出日時 2020-09-25 21:28:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-06-28 06:06:39
合計ジャッジ時間 3,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 44 ms
58,752 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 44 ms
59,008 KB
testcase_08 AC 43 ms
58,752 KB
testcase_09 AC 48 ms
60,288 KB
testcase_10 AC 43 ms
58,880 KB
testcase_11 AC 47 ms
60,160 KB
testcase_12 AC 43 ms
58,880 KB
testcase_13 AC 44 ms
58,880 KB
testcase_14 AC 42 ms
58,624 KB
testcase_15 AC 46 ms
60,288 KB
testcase_16 AC 47 ms
60,288 KB
testcase_17 AC 68 ms
68,224 KB
testcase_18 AC 66 ms
67,456 KB
testcase_19 AC 66 ms
67,328 KB
testcase_20 AC 64 ms
67,712 KB
testcase_21 AC 64 ms
66,944 KB
testcase_22 AC 67 ms
68,224 KB
testcase_23 AC 67 ms
68,224 KB
testcase_24 AC 67 ms
68,224 KB
testcase_25 AC 66 ms
67,968 KB
testcase_26 AC 66 ms
68,224 KB
testcase_27 AC 67 ms
68,096 KB
testcase_28 AC 68 ms
68,224 KB
testcase_29 AC 67 ms
67,584 KB
testcase_30 AC 49 ms
61,312 KB
testcase_31 AC 54 ms
62,336 KB
testcase_32 AC 59 ms
64,640 KB
testcase_33 AC 45 ms
58,880 KB
testcase_34 AC 62 ms
66,048 KB
testcase_35 AC 50 ms
61,824 KB
testcase_36 AC 48 ms
60,416 KB
testcase_37 AC 49 ms
60,928 KB
testcase_38 AC 66 ms
67,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
DP=[[0]*(N*100+1) for i in range(N+1)]
DP[0][0]=1
mod=10**9+7
for i in range(N):
  for j in range((N-1)*100+1):
    DP[i+1][j+K]=(DP[i+1][j+K]+DP[i][j])%mod
    DP[i+1][j+A[i]]=(DP[i+1][j+A[i]]+DP[i][j])%mod
print((sum(DP[N][K*N:])-1)%mod)
0