結果

問題 No.1238 選抜クラス
ユーザー mkawa2mkawa2
提出日時 2021-09-02 00:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 68,736 KB
最終ジャッジ日時 2024-05-06 14:20:27
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,508 KB
testcase_01 AC 51 ms
63,984 KB
testcase_02 AC 58 ms
65,012 KB
testcase_03 AC 47 ms
60,436 KB
testcase_04 AC 48 ms
61,488 KB
testcase_05 AC 47 ms
60,844 KB
testcase_06 AC 48 ms
60,576 KB
testcase_07 AC 58 ms
66,508 KB
testcase_08 AC 54 ms
64,436 KB
testcase_09 AC 61 ms
66,588 KB
testcase_10 AC 54 ms
65,088 KB
testcase_11 AC 60 ms
65,480 KB
testcase_12 AC 56 ms
64,728 KB
testcase_13 AC 61 ms
66,632 KB
testcase_14 AC 55 ms
62,856 KB
testcase_15 AC 54 ms
63,924 KB
testcase_16 AC 56 ms
64,016 KB
testcase_17 AC 78 ms
68,284 KB
testcase_18 AC 83 ms
66,176 KB
testcase_19 AC 91 ms
68,736 KB
testcase_20 AC 77 ms
64,640 KB
testcase_21 AC 85 ms
67,328 KB
testcase_22 AC 66 ms
60,672 KB
testcase_23 AC 73 ms
62,208 KB
testcase_24 AC 68 ms
62,464 KB
testcase_25 AC 61 ms
60,672 KB
testcase_26 AC 73 ms
64,256 KB
testcase_27 AC 79 ms
66,560 KB
testcase_28 AC 76 ms
65,536 KB
testcase_29 AC 78 ms
66,048 KB
testcase_30 AC 68 ms
64,512 KB
testcase_31 AC 74 ms
67,840 KB
testcase_32 AC 82 ms
68,608 KB
testcase_33 AC 55 ms
62,336 KB
testcase_34 AC 76 ms
66,176 KB
testcase_35 AC 68 ms
65,664 KB
testcase_36 AC 59 ms
64,384 KB
testcase_37 AC 62 ms
64,512 KB
testcase_38 AC 80 ms
68,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**9
# md = 998244353
md = 10**9+7

mx = 10003

n, k = LI()
aa = LI()
aa = [a-k for a in aa]
dp = [0]*(mx*2+5)
dp[0] = 1
for a in aa:
    if a >= 0: s, t, d = mx, -mx, -1
    else: s, t, d = -mx, mx, 1
    for j in range(s, t, d):
        if j+a > mx or j+a < -mx: continue
        dp[j+a] += dp[j]
        dp[j+a] %= md

ans = -1
for j in range(mx):
    ans += dp[j]
    ans %= md

print(ans)
0