結果

問題 No.1238 選抜クラス
ユーザー tcltktcltk
提出日時 2021-01-17 05:13:39
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,041 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 851,248 KB
最終ジャッジ日時 2024-05-06 18:06:46
合計ジャッジ時間 12,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
89,216 KB
testcase_01 AC 142 ms
89,084 KB
testcase_02 AC 151 ms
89,400 KB
testcase_03 AC 147 ms
89,224 KB
testcase_04 AC 155 ms
89,188 KB
testcase_05 AC 143 ms
89,176 KB
testcase_06 AC 154 ms
89,368 KB
testcase_07 AC 144 ms
89,260 KB
testcase_08 AC 157 ms
89,600 KB
testcase_09 AC 150 ms
89,504 KB
testcase_10 AC 155 ms
89,600 KB
testcase_11 AC 146 ms
89,420 KB
testcase_12 AC 156 ms
89,672 KB
testcase_13 AC 146 ms
89,664 KB
testcase_14 AC 154 ms
89,356 KB
testcase_15 AC 147 ms
89,672 KB
testcase_16 AC 148 ms
89,728 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 AC 1,095 ms
488,476 KB
testcase_21 AC 1,024 ms
461,368 KB
testcase_22 AC 153 ms
89,808 KB
testcase_23 AC 151 ms
89,884 KB
testcase_24 MLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """2 2
# 1 3
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

def main():
    N, K = map(int, input().split())
    A = list(map(int, input().split()))
    sumA = sum(A)

    dp = [[[0 for _ in range(sumA+1)] for _ in range(N+1)] for _ in range(N+1)]
    dp[0][0][0] = 1
    for n in range(N):
        for k in range(n+1):
            for a in range(sumA+1):
                if dp[n][k][a] > 0:
                    dp[n+1][k][a] += dp[n][k][a]
                    dp[n+1][k+1][a+A[n]] += dp[n][k][a]
    
    v = 0
    for k in range(1, N+1):
        for a in range(K*k, sumA+1):
            v = (v + dp[N][k][a]) % MOD
    print(v)

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