結果

問題 No.1238 選抜クラス
ユーザー ayaoniayaoni
提出日時 2020-10-17 09:27:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 670 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 273,240 KB
最終ジャッジ日時 2024-07-21 01:51:05
合計ジャッジ時間 8,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
25,916 KB
testcase_01 AC 142 ms
19,984 KB
testcase_02 AC 364 ms
41,800 KB
testcase_03 AC 71 ms
15,304 KB
testcase_04 AC 71 ms
15,048 KB
testcase_05 AC 72 ms
15,832 KB
testcase_06 AC 71 ms
15,124 KB
testcase_07 AC 244 ms
28,460 KB
testcase_08 AC 349 ms
41,896 KB
testcase_09 AC 532 ms
48,544 KB
testcase_10 AC 278 ms
30,376 KB
testcase_11 AC 495 ms
46,624 KB
testcase_12 AC 384 ms
42,416 KB
testcase_13 AC 387 ms
41,908 KB
testcase_14 AC 355 ms
42,404 KB
testcase_15 AC 532 ms
48,424 KB
testcase_16 AC 482 ms
47,376 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))  #空白あり


N,K = MI()
A = LI()
for i in range(N):
    A[i] -= K
mod = 10**9+7
A = [0]+A

# 和が0以上になる選び方を数え上げる

dp = defaultdict(int)  # dp[(i,j)] = 生徒1~iの中から選ぶ時、和がjになるような選び方
dp[(0,0)] = 1
for i in range(1,N+1):
    a = A[i]
    for j in range(-10000,10001):
        dp[(i,j)] = dp[(i-1,j)]+dp[(i-1,j-a)]
        dp[(i,j)] %= mod

ans = -1
for i in range(10001):
    ans += dp[(N,i)]
    ans %= mod

print(ans)
0