結果

問題 No.616 へんなソート
ユーザー wajima_wataruwajima_wataru
提出日時 2017-12-29 11:12:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 333 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 253,568 KB
最終ジャッジ日時 2024-12-21 10:26:32
合計ジャッジ時間 19,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,568 KB
testcase_01 AC 34 ms
163,328 KB
testcase_02 AC 33 ms
17,440 KB
testcase_03 AC 35 ms
145,920 KB
testcase_04 AC 50 ms
18,084 KB
testcase_05 AC 33 ms
253,568 KB
testcase_06 AC 43 ms
17,952 KB
testcase_07 AC 33 ms
10,624 KB
testcase_08 AC 46 ms
11,136 KB
testcase_09 AC 74 ms
11,776 KB
testcase_10 AC 36 ms
10,496 KB
testcase_11 AC 44 ms
11,264 KB
testcase_12 AC 295 ms
18,816 KB
testcase_13 TLE -
testcase_14 AC 160 ms
13,952 KB
testcase_15 AC 34 ms
10,624 KB
testcase_16 AC 62 ms
11,520 KB
testcase_17 TLE -
testcase_18 AC 1,854 ms
69,632 KB
testcase_19 TLE -
testcase_20 AC 45 ms
11,008 KB
testcase_21 AC 66 ms
12,288 KB
testcase_22 AC 477 ms
29,696 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 32 ms
10,624 KB
testcase_25 AC 33 ms
10,624 KB
testcase_26 AC 115 ms
22,656 KB
testcase_27 AC 98 ms
20,608 KB
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)]
	dp[1][0] = 1
	j_max = 2
	for i in range(2, N + 1):
		for j in range(min(j_max, K + 1)):
			dp[i][j] = sum(dp[i - 1][max(0, j - i + 1):j + 1])
		j_max += i

	print(sum(dp[N][0:K + 1]) % 1000000007)
0