結果

問題 No.1238 選抜クラス
ユーザー ayaoniayaoni
提出日時 2020-10-17 09:25:47
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 655 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 359,616 KB
最終ジャッジ日時 2024-07-21 01:50:44
合計ジャッジ時間 8,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
87,848 KB
testcase_01 AC 118 ms
95,744 KB
testcase_02 AC 215 ms
109,332 KB
testcase_03 AC 68 ms
74,624 KB
testcase_04 AC 68 ms
76,032 KB
testcase_05 AC 69 ms
76,160 KB
testcase_06 AC 67 ms
75,136 KB
testcase_07 AC 180 ms
98,176 KB
testcase_08 AC 226 ms
109,568 KB
testcase_09 AC 348 ms
127,992 KB
testcase_10 AC 183 ms
100,092 KB
testcase_11 AC 293 ms
127,640 KB
testcase_12 AC 231 ms
115,084 KB
testcase_13 AC 248 ms
114,944 KB
testcase_14 AC 224 ms
109,080 KB
testcase_15 AC 312 ms
128,104 KB
testcase_16 AC 296 ms
127,876 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 653 ms
170,192 KB
testcase_31 AC 1,224 ms
240,276 KB
testcase_32 AC 1,823 ms
281,660 KB
testcase_33 AC 168 ms
98,236 KB
testcase_34 AC 1,902 ms
288,952 KB
testcase_35 AC 813 ms
189,280 KB
testcase_36 AC 432 ms
135,788 KB
testcase_37 AC 711 ms
169,416 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

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