結果

問題 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
コンパイル時間 183 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 588,032 KB
最終ジャッジ日時 2024-12-21 10:27:12
合計ジャッジ時間 16,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
17,444 KB
testcase_01 MLE -
testcase_02 AC 36 ms
17,572 KB
testcase_03 AC 38 ms
16,128 KB
testcase_04 AC 40 ms
18,464 KB
testcase_05 MLE -
testcase_06 AC 39 ms
11,264 KB
testcase_07 AC 33 ms
10,624 KB
testcase_08 AC 42 ms
11,520 KB
testcase_09 AC 52 ms
12,672 KB
testcase_10 AC 34 ms
10,752 KB
testcase_11 AC 41 ms
11,520 KB
testcase_12 AC 130 ms
22,656 KB
testcase_13 TLE -
testcase_14 AC 178 ms
16,384 KB
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 47 ms
12,032 KB
testcase_17 TLE -
testcase_18 AC 593 ms
88,704 KB
testcase_19 AC 546 ms
87,168 KB
testcase_20 AC 38 ms
11,264 KB
testcase_21 AC 52 ms
12,928 KB
testcase_22 AC 208 ms
34,944 KB
testcase_23 AC 34 ms
10,624 KB
testcase_24 AC 33 ms
10,624 KB
testcase_25 AC 33 ms
10,624 KB
testcase_26 AC 108 ms
22,912 KB
testcase_27 AC 97 ms
20,608 KB
testcase_28 TLE -
testcase_29 MLE -
権限があれば一括ダウンロードができます

ソースコード

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