結果

問題 No.1238 選抜クラス
ユーザー titiatitia
提出日時 2020-09-25 21:48:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-28 06:22:22
合計ジャッジ時間 26,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
11,008 KB
testcase_01 AC 70 ms
11,008 KB
testcase_02 AC 147 ms
11,264 KB
testcase_03 AC 45 ms
11,136 KB
testcase_04 AC 45 ms
11,264 KB
testcase_05 AC 45 ms
11,136 KB
testcase_06 AC 45 ms
11,008 KB
testcase_07 AC 107 ms
11,008 KB
testcase_08 AC 146 ms
11,136 KB
testcase_09 AC 206 ms
11,008 KB
testcase_10 AC 122 ms
11,136 KB
testcase_11 AC 194 ms
11,008 KB
testcase_12 AC 161 ms
11,264 KB
testcase_13 AC 160 ms
11,008 KB
testcase_14 AC 146 ms
11,136 KB
testcase_15 AC 208 ms
11,136 KB
testcase_16 AC 203 ms
11,008 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,279 ms
11,776 KB
testcase_20 WA -
testcase_21 AC 1,219 ms
11,520 KB
testcase_22 WA -
testcase_23 AC 1,298 ms
11,008 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,318 ms
11,648 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 419 ms
11,008 KB
testcase_31 WA -
testcase_32 AC 1,027 ms
11,264 KB
testcase_33 AC 109 ms
11,008 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 260 ms
11,136 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
A=[a-K for a in A]            

DP=[0]*20010
DP[10005]=1

import copy

for a in A:
    NDP=copy.deepcopy(DP)

    for i in range(20010):
        if 0<=i+a<20010:
            NDP[i+a]+=DP[i]

    DP=NDP

print(sum(DP[10005:])-1)
0