結果

問題 No.616 へんなソート
ユーザー ayaoniayaoni
提出日時 2020-12-30 22:12:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 250,240 KB
最終ジャッジ日時 2024-10-08 04:36:32
合計ジャッジ時間 3,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 48 ms
59,776 KB
testcase_04 AC 49 ms
60,416 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 48 ms
60,160 KB
testcase_07 AC 45 ms
59,392 KB
testcase_08 AC 49 ms
60,800 KB
testcase_09 AC 50 ms
61,440 KB
testcase_10 AC 46 ms
59,264 KB
testcase_11 AC 47 ms
60,160 KB
testcase_12 AC 57 ms
64,256 KB
testcase_13 AC 177 ms
134,912 KB
testcase_14 AC 55 ms
64,512 KB
testcase_15 AC 43 ms
59,136 KB
testcase_16 AC 47 ms
60,544 KB
testcase_17 AC 123 ms
108,956 KB
testcase_18 AC 59 ms
67,584 KB
testcase_19 AC 60 ms
68,992 KB
testcase_20 AC 48 ms
60,416 KB
testcase_21 AC 47 ms
60,544 KB
testcase_22 AC 50 ms
63,232 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 40 ms
52,352 KB
testcase_28 AC 438 ms
249,984 KB
testcase_29 AC 422 ms
250,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations,accumulate
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,K = MI()
A = LI()
mod = 10**9+7

dp = [[0]*(K+1) for _ in range(N+1)]
for j in range(K+1):
    dp[0][j] = 1
for i in range(1,N+1):
    for j in range(K+1):
        if j >= i:
            dp[i][j] = dp[i-1][j]-dp[i-1][j-i]
        else:
            dp[i][j] = dp[i-1][j]
    X = [0]*(K+1)
    for j in range(K+1):
        if j == 0:
            X[j] = dp[i][j]
        else:
            X[j] = X[j-1]+dp[i][j]
            X[j] %= mod
    dp[i] = X

print(dp[-1][-1])
0