結果

問題 No.1238 選抜クラス
ユーザー tamatotamato
提出日時 2020-09-25 21:39:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,612 KB
実行使用メモリ 80,948 KB
最終ジャッジ日時 2024-06-28 06:15:10
合計ジャッジ時間 4,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,288 KB
testcase_01 AC 50 ms
62,336 KB
testcase_02 AC 55 ms
64,564 KB
testcase_03 AC 47 ms
62,040 KB
testcase_04 AC 49 ms
61,736 KB
testcase_05 AC 48 ms
61,604 KB
testcase_06 AC 48 ms
61,132 KB
testcase_07 AC 51 ms
63,016 KB
testcase_08 AC 53 ms
62,728 KB
testcase_09 AC 58 ms
66,588 KB
testcase_10 AC 53 ms
63,916 KB
testcase_11 AC 56 ms
64,756 KB
testcase_12 AC 55 ms
64,368 KB
testcase_13 AC 56 ms
64,224 KB
testcase_14 AC 53 ms
62,664 KB
testcase_15 AC 57 ms
64,312 KB
testcase_16 AC 57 ms
64,760 KB
testcase_17 AC 102 ms
79,792 KB
testcase_18 AC 103 ms
80,948 KB
testcase_19 AC 103 ms
78,428 KB
testcase_20 AC 99 ms
78,684 KB
testcase_21 AC 98 ms
77,792 KB
testcase_22 AC 97 ms
78,120 KB
testcase_23 AC 102 ms
78,952 KB
testcase_24 AC 102 ms
78,904 KB
testcase_25 AC 97 ms
77,868 KB
testcase_26 AC 100 ms
79,404 KB
testcase_27 AC 102 ms
79,028 KB
testcase_28 AC 103 ms
80,356 KB
testcase_29 AC 103 ms
79,876 KB
testcase_30 AC 67 ms
67,784 KB
testcase_31 AC 82 ms
72,620 KB
testcase_32 AC 90 ms
74,988 KB
testcase_33 AC 53 ms
62,336 KB
testcase_34 AC 98 ms
78,724 KB
testcase_35 AC 73 ms
70,208 KB
testcase_36 AC 62 ms
65,656 KB
testcase_37 AC 68 ms
69,012 KB
testcase_38 AC 103 ms
79,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    B = [a - K for a in A]
    dp = [[0] * (20010) for _ in range(N+1)]
    dp[0][0] = 1
    for i, b in enumerate(B):
        for j in range(-10000, 10001):
            dp[i+1][j] = (dp[i+1][j] + dp[i][j])%mod
            if -10000 <= j+b <= 10000:
                dp[i+1][j+b] = (dp[i+1][j+b] + dp[i][j])%mod
    ans = 0
    for j in range(10001):
        ans = (ans + dp[-1][j])%mod
    print(ans - 1)


if __name__ == '__main__':
    main()
0