結果

問題 No.1238 選抜クラス
ユーザー mkawa2mkawa2
提出日時 2021-09-02 00:08:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 971 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 68,480 KB
最終ジャッジ日時 2024-05-06 14:15:35
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,208 KB
testcase_01 AC 55 ms
62,464 KB
testcase_02 AC 59 ms
64,640 KB
testcase_03 AC 46 ms
60,416 KB
testcase_04 AC 46 ms
60,544 KB
testcase_05 AC 46 ms
60,376 KB
testcase_06 AC 47 ms
60,288 KB
testcase_07 AC 58 ms
64,768 KB
testcase_08 AC 52 ms
63,232 KB
testcase_09 AC 62 ms
65,792 KB
testcase_10 AC 54 ms
64,000 KB
testcase_11 AC 58 ms
64,896 KB
testcase_12 AC 54 ms
63,488 KB
testcase_13 AC 59 ms
65,792 KB
testcase_14 AC 56 ms
62,720 KB
testcase_15 AC 55 ms
63,104 KB
testcase_16 AC 54 ms
63,488 KB
testcase_17 AC 76 ms
66,688 KB
testcase_18 AC 79 ms
66,432 KB
testcase_19 AC 83 ms
68,480 KB
testcase_20 AC 70 ms
64,512 KB
testcase_21 AC 78 ms
67,456 KB
testcase_22 AC 60 ms
60,416 KB
testcase_23 AC 69 ms
62,464 KB
testcase_24 WA -
testcase_25 AC 64 ms
60,544 KB
testcase_26 AC 79 ms
64,256 KB
testcase_27 AC 79 ms
66,688 KB
testcase_28 AC 77 ms
65,664 KB
testcase_29 AC 73 ms
65,664 KB
testcase_30 AC 60 ms
64,512 KB
testcase_31 AC 71 ms
67,456 KB
testcase_32 AC 80 ms
68,480 KB
testcase_33 AC 53 ms
62,464 KB
testcase_34 AC 79 ms
66,176 KB
testcase_35 AC 65 ms
65,536 KB
testcase_36 AC 58 ms
64,384 KB
testcase_37 AC 62 ms
64,256 KB
testcase_38 AC 82 ms
68,224 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 = 10000

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