結果

問題 No.616 へんなソート
ユーザー titiatitia
提出日時 2024-01-06 00:19:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 272 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 99,620 KB
最終ジャッジ日時 2024-09-27 19:12:35
合計ジャッジ時間 9,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,440 KB
testcase_01 AC 40 ms
52,972 KB
testcase_02 AC 43 ms
59,180 KB
testcase_03 AC 44 ms
59,508 KB
testcase_04 AC 45 ms
59,192 KB
testcase_05 AC 39 ms
52,496 KB
testcase_06 AC 46 ms
60,716 KB
testcase_07 AC 42 ms
58,908 KB
testcase_08 AC 44 ms
60,400 KB
testcase_09 AC 47 ms
58,756 KB
testcase_10 AC 42 ms
59,152 KB
testcase_11 AC 45 ms
59,372 KB
testcase_12 AC 69 ms
61,148 KB
testcase_13 AC 1,765 ms
83,060 KB
testcase_14 AC 50 ms
60,040 KB
testcase_15 AC 43 ms
58,452 KB
testcase_16 AC 46 ms
59,940 KB
testcase_17 AC 1,399 ms
78,668 KB
testcase_18 AC 479 ms
67,896 KB
testcase_19 AC 344 ms
66,064 KB
testcase_20 AC 45 ms
59,084 KB
testcase_21 AC 48 ms
60,396 KB
testcase_22 AC 148 ms
63,020 KB
testcase_23 AC 38 ms
52,216 KB
testcase_24 AC 39 ms
52,568 KB
testcase_25 AC 39 ms
52,704 KB
testcase_26 AC 128 ms
62,420 KB
testcase_27 AC 107 ms
62,584 KB
testcase_28 TLE -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=10**9+7

DP=[1,1]

for i in range(3,N+1):
    NDP=[0]*(i*(i-1)//2+1)

    for j in range(i):
        for k in range(len(DP)):
            NDP[j+k]=(NDP[j+k]+DP[k])%mod

    DP=NDP

print(sum(DP[:K+1])%mod)
0