結果

問題 No.1238 選抜クラス
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-13 01:33:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 75,784 KB
最終ジャッジ日時 2024-11-21 15:04:57
合計ジャッジ時間 3,530 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,380 KB
testcase_01 AC 44 ms
62,688 KB
testcase_02 AC 45 ms
64,012 KB
testcase_03 AC 43 ms
60,800 KB
testcase_04 AC 43 ms
61,256 KB
testcase_05 AC 42 ms
61,580 KB
testcase_06 AC 42 ms
61,396 KB
testcase_07 AC 44 ms
63,548 KB
testcase_08 AC 45 ms
63,952 KB
testcase_09 AC 47 ms
64,604 KB
testcase_10 AC 44 ms
61,700 KB
testcase_11 AC 45 ms
63,776 KB
testcase_12 AC 45 ms
63,096 KB
testcase_13 AC 46 ms
63,380 KB
testcase_14 AC 46 ms
62,900 KB
testcase_15 AC 46 ms
64,096 KB
testcase_16 AC 45 ms
63,120 KB
testcase_17 AC 58 ms
75,504 KB
testcase_18 AC 57 ms
75,260 KB
testcase_19 AC 57 ms
75,508 KB
testcase_20 AC 58 ms
75,568 KB
testcase_21 AC 59 ms
75,612 KB
testcase_22 AC 54 ms
75,368 KB
testcase_23 AC 57 ms
75,380 KB
testcase_24 AC 56 ms
75,528 KB
testcase_25 AC 57 ms
75,536 KB
testcase_26 AC 58 ms
75,352 KB
testcase_27 AC 59 ms
75,364 KB
testcase_28 AC 57 ms
75,476 KB
testcase_29 AC 56 ms
75,472 KB
testcase_30 AC 49 ms
66,796 KB
testcase_31 AC 52 ms
69,572 KB
testcase_32 AC 54 ms
73,624 KB
testcase_33 AC 43 ms
62,488 KB
testcase_34 AC 54 ms
74,312 KB
testcase_35 AC 49 ms
66,784 KB
testcase_36 AC 44 ms
63,140 KB
testcase_37 AC 47 ms
66,516 KB
testcase_38 AC 58 ms
75,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
U = 10000

N, K = map(int, input().split())
A = list(map(int, input().split()))


pos = []
neg = []
for a in A:
    a -= K
    if a >= 0:
        pos.append(a)
    else:
        neg.append(-a)


def calc_DP(X):
    dp = [0] * (U + 1)
    dp[0] = 1
    for p in X:
        for i in reversed(range(p, U + 1)):
            dp[i] += dp[i - p]
            dp[i] %= mod
    dp[0] -= 1
    return dp


pos = calc_DP(pos)
neg = calc_DP(neg)
for i in range(1, U + 1):
    neg[i] += neg[i - 1]
    neg[i] %= mod

ans = sum(pos) % mod
for i, v in enumerate(pos):
    ans += v * neg[i]
    ans %= mod
print(ans)
0