結果

問題 No.616 へんなソート
ユーザー mkawa2mkawa2
提出日時 2020-06-09 19:07:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 167,372 KB
最終ジャッジ日時 2024-06-10 18:37:06
合計ジャッジ時間 3,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,724 KB
testcase_01 AC 35 ms
52,408 KB
testcase_02 AC 33 ms
52,668 KB
testcase_03 AC 36 ms
59,132 KB
testcase_04 AC 38 ms
60,008 KB
testcase_05 AC 32 ms
51,944 KB
testcase_06 AC 38 ms
59,024 KB
testcase_07 AC 37 ms
58,892 KB
testcase_08 AC 37 ms
60,264 KB
testcase_09 AC 39 ms
59,212 KB
testcase_10 AC 36 ms
58,396 KB
testcase_11 AC 38 ms
59,516 KB
testcase_12 AC 42 ms
61,216 KB
testcase_13 AC 156 ms
96,120 KB
testcase_14 AC 42 ms
60,588 KB
testcase_15 AC 35 ms
59,396 KB
testcase_16 AC 38 ms
59,304 KB
testcase_17 AC 104 ms
92,912 KB
testcase_18 AC 46 ms
62,736 KB
testcase_19 AC 46 ms
62,352 KB
testcase_20 AC 39 ms
59,448 KB
testcase_21 AC 38 ms
59,680 KB
testcase_22 AC 44 ms
61,080 KB
testcase_23 AC 33 ms
52,432 KB
testcase_24 AC 33 ms
52,244 KB
testcase_25 AC 33 ms
52,284 KB
testcase_26 AC 34 ms
53,320 KB
testcase_27 AC 34 ms
52,576 KB
testcase_28 AC 380 ms
166,876 KB
testcase_29 AC 386 ms
167,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)

def MI(): return map(int, sys.stdin.readline().split())

def main():
    md = 10 ** 9 + 7
    n,k=MI()
    MI()
    dp=[[0]*(k+1) for _ in range(n+1)]
    dp[0][0]=1
    for i in range(n):
        s=0
        w=n-i
        for j in range(k+1):
            s+=dp[i][j]
            if j-w>=0:s-=dp[i][j-w]
            s%=md
            dp[i+1][j]=s
    print(sum(dp[n])%md)

main()
0