結果

問題 No.616 へんなソート
ユーザー ああいいああいい
提出日時 2022-03-30 19:30:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 427 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 142,336 KB
最終ジャッジ日時 2024-11-15 10:12:36
合計ジャッジ時間 12,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 40 ms
142,336 KB
testcase_02 AC 49 ms
64,768 KB
testcase_03 AC 52 ms
61,056 KB
testcase_04 AC 53 ms
61,696 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 52 ms
61,696 KB
testcase_07 AC 48 ms
60,800 KB
testcase_08 AC 54 ms
62,592 KB
testcase_09 AC 53 ms
63,048 KB
testcase_10 AC 47 ms
60,800 KB
testcase_11 AC 51 ms
61,952 KB
testcase_12 AC 70 ms
67,328 KB
testcase_13 TLE -
testcase_14 AC 68 ms
67,072 KB
testcase_15 AC 48 ms
59,904 KB
testcase_16 AC 53 ms
61,696 KB
testcase_17 AC 1,014 ms
76,416 KB
testcase_18 AC 151 ms
75,776 KB
testcase_19 AC 174 ms
75,648 KB
testcase_20 AC 52 ms
61,568 KB
testcase_21 AC 57 ms
61,696 KB
testcase_22 AC 77 ms
66,176 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 40 ms
51,712 KB
testcase_25 AC 45 ms
51,840 KB
testcase_26 AC 42 ms
51,968 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a.sort()
P = 10 ** 9 + 7
dp = [0] * (K+1)
dp[0] = 1
for i in range(N):
    nx = [0] * (K + 1)
    for u in range(K+1):
        for j in range(i+1):
            if u + j <= K:
                nx[u+j] += dp[u]
            else:
                break
    for u in range(K+1):
        nx[u] %= P
    dp = nx
ans = 0
for i in dp:
    ans = (ans + i) % P
print(ans)
0