結果

問題 No.1238 選抜クラス
ユーザー komkompikomkompi
提出日時 2020-10-17 22:12:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 180,432 KB
最終ジャッジ日時 2024-07-21 03:11:59
合計ジャッジ時間 18,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,416 KB
testcase_01 AC 47 ms
60,928 KB
testcase_02 AC 54 ms
62,208 KB
testcase_03 AC 42 ms
58,752 KB
testcase_04 AC 47 ms
58,368 KB
testcase_05 AC 43 ms
57,984 KB
testcase_06 AC 44 ms
58,496 KB
testcase_07 AC 52 ms
62,592 KB
testcase_08 AC 56 ms
62,848 KB
testcase_09 AC 63 ms
63,104 KB
testcase_10 AC 53 ms
62,208 KB
testcase_11 AC 64 ms
63,616 KB
testcase_12 AC 56 ms
62,208 KB
testcase_13 AC 55 ms
63,104 KB
testcase_14 AC 55 ms
62,336 KB
testcase_15 AC 66 ms
64,000 KB
testcase_16 AC 63 ms
62,976 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,042 ms
161,996 KB
testcase_20 WA -
testcase_21 AC 851 ms
124,544 KB
testcase_22 WA -
testcase_23 AC 987 ms
158,720 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,096 ms
174,592 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 118 ms
67,072 KB
testcase_31 WA -
testcase_32 AC 512 ms
82,816 KB
testcase_33 AC 52 ms
61,952 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 76 ms
65,536 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
0