結果

問題 No.616 へんなソート
ユーザー wajima_wataruwajima_wataru
提出日時 2017-12-29 11:31:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 504 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 680,352 KB
最終ジャッジ日時 2024-06-01 06:36:25
合計ジャッジ時間 4,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,824 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 33 ms
11,008 KB
testcase_04 AC 41 ms
11,776 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 38 ms
11,520 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 40 ms
11,648 KB
testcase_09 AC 51 ms
12,928 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 38 ms
11,648 KB
testcase_12 AC 125 ms
22,912 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = input()

if N == 1:
	print(1)
else:
	dp = [[0 for i in range(N * (N - 1))] for j in range(N + 1)]
	cum = [[] for _ in range(N + 1)]
	dp[1][0] = 1
	cum[1] = [0, 1, 1]
	j_max = 2
	for i in range(2, N + 1):
		sum_val = 0
		cum[i].append(0)
		for j in range(min(j_max, K + 1)):
			dp[i][j] = cum[i - 1][j + 1] - cum[i - 1][max(0, j - i + 1)]
			sum_val += dp[i][j]
			cum[i].append(sum_val)
		j_max += i
		cum[i] += [sum_val] * i
	print(sum(dp[N][0:K + 1]) % 1000000007)
0