結果

問題 No.1238 選抜クラス
ユーザー titiatitia
提出日時 2020-09-25 21:50:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,359 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-28 06:25:43
合計ジャッジ時間 26,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
10,752 KB
testcase_01 AC 72 ms
10,880 KB
testcase_02 AC 149 ms
11,008 KB
testcase_03 AC 45 ms
11,008 KB
testcase_04 AC 45 ms
10,752 KB
testcase_05 AC 47 ms
10,880 KB
testcase_06 AC 45 ms
10,752 KB
testcase_07 AC 110 ms
11,008 KB
testcase_08 AC 146 ms
11,008 KB
testcase_09 AC 208 ms
11,008 KB
testcase_10 AC 123 ms
10,880 KB
testcase_11 AC 198 ms
10,880 KB
testcase_12 AC 160 ms
10,752 KB
testcase_13 AC 158 ms
11,008 KB
testcase_14 AC 146 ms
11,008 KB
testcase_15 AC 210 ms
11,008 KB
testcase_16 AC 194 ms
11,008 KB
testcase_17 AC 1,311 ms
11,264 KB
testcase_18 AC 1,262 ms
11,136 KB
testcase_19 AC 1,282 ms
11,264 KB
testcase_20 AC 1,252 ms
11,392 KB
testcase_21 AC 1,210 ms
11,392 KB
testcase_22 AC 1,285 ms
10,880 KB
testcase_23 AC 1,315 ms
11,008 KB
testcase_24 AC 1,347 ms
10,880 KB
testcase_25 AC 1,330 ms
11,008 KB
testcase_26 AC 1,307 ms
11,392 KB
testcase_27 AC 1,359 ms
11,520 KB
testcase_28 AC 1,319 ms
11,136 KB
testcase_29 AC 1,317 ms
11,136 KB
testcase_30 AC 417 ms
11,008 KB
testcase_31 AC 728 ms
11,008 KB
testcase_32 AC 1,031 ms
11,392 KB
testcase_33 AC 108 ms
11,008 KB
testcase_34 AC 1,110 ms
11,264 KB
testcase_35 AC 517 ms
11,008 KB
testcase_36 AC 258 ms
11,008 KB
testcase_37 AC 441 ms
11,008 KB
testcase_38 AC 1,236 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

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)%(10**9+7))
0