結果

問題 No.616 へんなソート
ユーザー ああいいああいい
提出日時 2022-03-30 19:34:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 250,240 KB
最終ジャッジ日時 2024-11-15 10:17:18
合計ジャッジ時間 3,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 50 ms
59,904 KB
testcase_04 AC 51 ms
60,928 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 51 ms
60,160 KB
testcase_07 AC 49 ms
59,520 KB
testcase_08 AC 52 ms
60,288 KB
testcase_09 AC 53 ms
61,056 KB
testcase_10 AC 49 ms
59,648 KB
testcase_11 AC 52 ms
60,544 KB
testcase_12 AC 61 ms
64,384 KB
testcase_13 AC 198 ms
135,680 KB
testcase_14 AC 61 ms
64,512 KB
testcase_15 AC 49 ms
59,648 KB
testcase_16 AC 51 ms
60,672 KB
testcase_17 AC 115 ms
76,416 KB
testcase_18 AC 67 ms
67,584 KB
testcase_19 AC 70 ms
68,736 KB
testcase_20 AC 51 ms
60,288 KB
testcase_21 AC 52 ms
60,928 KB
testcase_22 AC 56 ms
62,592 KB
testcase_23 AC 39 ms
51,456 KB
testcase_24 AC 38 ms
51,584 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 40 ms
52,480 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 AC 436 ms
250,112 KB
testcase_29 AC 438 ms
250,240 KB
権限があれば一括ダウンロードができます

ソースコード

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)
    S = [0] * (K + 2)
    for j in range(K+1):
        S[j+1] = (S[j] + dp[j]) % P
    for j in range(K+1):
        tmp = S[j+1] - S[max(0,j-i)]
        nx[j] += tmp

    
    for u in range(K+1):
        nx[u] %= P
    dp = nx
ans = 0
for i in dp:
    ans = (ans + i) % P
print(ans)
0