結果

問題 No.1238 選抜クラス
ユーザー mkawa2mkawa2
提出日時 2021-09-02 00:08:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 971 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 70,260 KB
最終ジャッジ日時 2024-11-28 21:26:37
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
62,704 KB
testcase_01 AC 53 ms
63,288 KB
testcase_02 AC 59 ms
65,824 KB
testcase_03 AC 47 ms
60,668 KB
testcase_04 AC 48 ms
61,376 KB
testcase_05 AC 50 ms
60,840 KB
testcase_06 AC 47 ms
61,912 KB
testcase_07 AC 62 ms
64,568 KB
testcase_08 AC 55 ms
63,584 KB
testcase_09 AC 63 ms
66,100 KB
testcase_10 AC 56 ms
63,684 KB
testcase_11 AC 60 ms
66,260 KB
testcase_12 AC 55 ms
63,808 KB
testcase_13 AC 62 ms
66,872 KB
testcase_14 AC 54 ms
64,532 KB
testcase_15 AC 55 ms
63,412 KB
testcase_16 AC 57 ms
64,848 KB
testcase_17 AC 78 ms
67,136 KB
testcase_18 AC 77 ms
66,968 KB
testcase_19 AC 81 ms
70,260 KB
testcase_20 AC 73 ms
65,180 KB
testcase_21 AC 81 ms
68,764 KB
testcase_22 AC 62 ms
60,768 KB
testcase_23 AC 67 ms
62,868 KB
testcase_24 WA -
testcase_25 AC 62 ms
60,960 KB
testcase_26 AC 72 ms
66,348 KB
testcase_27 AC 78 ms
67,244 KB
testcase_28 AC 76 ms
65,552 KB
testcase_29 AC 75 ms
66,660 KB
testcase_30 AC 61 ms
66,192 KB
testcase_31 AC 72 ms
68,120 KB
testcase_32 AC 80 ms
69,504 KB
testcase_33 AC 55 ms
63,424 KB
testcase_34 AC 74 ms
67,324 KB
testcase_35 AC 65 ms
66,156 KB
testcase_36 AC 60 ms
64,432 KB
testcase_37 AC 62 ms
65,308 KB
testcase_38 AC 81 ms
69,560 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