結果

問題 No.1238 選抜クラス
ユーザー komkompikomkompi
提出日時 2020-10-17 22:13:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,164 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 180,036 KB
最終ジャッジ日時 2024-07-21 03:12:19
合計ジャッジ時間 19,661 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,416 KB
testcase_01 AC 59 ms
60,672 KB
testcase_02 AC 64 ms
62,592 KB
testcase_03 AC 51 ms
58,240 KB
testcase_04 AC 47 ms
58,568 KB
testcase_05 AC 46 ms
58,752 KB
testcase_06 AC 52 ms
58,496 KB
testcase_07 AC 57 ms
61,952 KB
testcase_08 AC 63 ms
62,592 KB
testcase_09 AC 77 ms
62,976 KB
testcase_10 AC 62 ms
62,080 KB
testcase_11 AC 68 ms
63,360 KB
testcase_12 AC 62 ms
62,592 KB
testcase_13 AC 63 ms
62,848 KB
testcase_14 AC 61 ms
62,336 KB
testcase_15 AC 70 ms
64,000 KB
testcase_16 AC 69 ms
63,232 KB
testcase_17 AC 1,164 ms
180,036 KB
testcase_18 AC 1,078 ms
161,048 KB
testcase_19 AC 1,090 ms
162,088 KB
testcase_20 AC 1,000 ms
148,080 KB
testcase_21 AC 886 ms
124,544 KB
testcase_22 AC 1,038 ms
166,656 KB
testcase_23 AC 1,019 ms
158,976 KB
testcase_24 AC 1,161 ms
168,608 KB
testcase_25 AC 1,119 ms
158,280 KB
testcase_26 AC 1,123 ms
176,512 KB
testcase_27 AC 1,152 ms
174,336 KB
testcase_28 AC 1,140 ms
173,312 KB
testcase_29 AC 1,088 ms
160,328 KB
testcase_30 AC 125 ms
67,328 KB
testcase_31 AC 285 ms
70,656 KB
testcase_32 AC 541 ms
82,688 KB
testcase_33 AC 58 ms
62,208 KB
testcase_34 AC 665 ms
103,296 KB
testcase_35 AC 164 ms
68,028 KB
testcase_36 AC 83 ms
65,664 KB
testcase_37 AC 135 ms
67,712 KB
testcase_38 AC 976 ms
135,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N,K=map(int,input().split())
A=list(map(int,input().split()))

ans=0
dp=[[0]*10001 for i in range(N+1)]
dp[0][0]=1

for a in A:
    for n in range(N)[::-1]:
        for i in range(10001)[::-1]:
            if a+i<=10000:
                dp[n+1][a+i]+=dp[n][i]

for n in range(1,N+1):
    ans+=sum(dp[n][n*K:])

print(ans%(10**9+7))
0