結果

問題 No.1238 選抜クラス
ユーザー hir355hir355
提出日時 2020-09-25 21:49:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 77,964 KB
最終ジャッジ日時 2024-06-28 06:22:35
合計ジャッジ時間 4,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,776 KB
testcase_01 AC 50 ms
61,092 KB
testcase_02 AC 55 ms
62,452 KB
testcase_03 AC 45 ms
60,376 KB
testcase_04 AC 45 ms
59,336 KB
testcase_05 AC 45 ms
60,328 KB
testcase_06 AC 46 ms
61,124 KB
testcase_07 AC 53 ms
61,624 KB
testcase_08 AC 55 ms
63,784 KB
testcase_09 AC 58 ms
63,232 KB
testcase_10 AC 53 ms
61,756 KB
testcase_11 AC 57 ms
63,508 KB
testcase_12 AC 55 ms
62,484 KB
testcase_13 AC 55 ms
62,252 KB
testcase_14 AC 55 ms
62,584 KB
testcase_15 AC 58 ms
63,816 KB
testcase_16 AC 57 ms
62,488 KB
testcase_17 AC 117 ms
77,428 KB
testcase_18 AC 114 ms
76,720 KB
testcase_19 AC 116 ms
76,204 KB
testcase_20 AC 114 ms
75,492 KB
testcase_21 AC 111 ms
74,852 KB
testcase_22 AC 120 ms
77,076 KB
testcase_23 AC 116 ms
77,964 KB
testcase_24 AC 117 ms
76,420 KB
testcase_25 AC 117 ms
76,976 KB
testcase_26 AC 116 ms
77,072 KB
testcase_27 AC 116 ms
76,424 KB
testcase_28 AC 115 ms
77,100 KB
testcase_29 AC 114 ms
76,084 KB
testcase_30 AC 68 ms
66,584 KB
testcase_31 AC 85 ms
70,540 KB
testcase_32 AC 100 ms
73,316 KB
testcase_33 AC 52 ms
61,540 KB
testcase_34 AC 106 ms
75,088 KB
testcase_35 AC 72 ms
68,216 KB
testcase_36 AC 58 ms
64,804 KB
testcase_37 AC 70 ms
65,804 KB
testcase_38 AC 113 ms
75,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
n, k = map(int, input().split())
a = list(map(lambda x: int(x)-k, input().split()))
dp = [[0]*20010 for _ in range(n + 1)]
dp[0][0] = 1
for i in range(n):
    for j in range(len(dp[i])):
        dp[i + 1][j] += dp[i][j] % MOD
        dp[i + 1][(j + a[i]) % len(dp[i])] += dp[i][j] % MOD
ans = -1
for i in range(10001):
    ans += dp[n][i]
print(ans % MOD)
0