結果

問題 No.616 へんなソート
ユーザー convexineqconvexineq
提出日時 2021-05-06 05:07:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 328 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 87,840 KB
最終ジャッジ日時 2024-09-13 21:11:36
合計ジャッジ時間 11,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,436 KB
testcase_01 AC 38 ms
52,604 KB
testcase_02 AC 42 ms
59,604 KB
testcase_03 AC 44 ms
59,360 KB
testcase_04 AC 44 ms
60,000 KB
testcase_05 AC 38 ms
52,016 KB
testcase_06 AC 44 ms
59,488 KB
testcase_07 AC 44 ms
60,164 KB
testcase_08 AC 44 ms
60,672 KB
testcase_09 AC 47 ms
60,888 KB
testcase_10 AC 44 ms
58,828 KB
testcase_11 AC 45 ms
60,388 KB
testcase_12 AC 78 ms
66,764 KB
testcase_13 TLE -
testcase_14 AC 53 ms
63,572 KB
testcase_15 AC 43 ms
59,796 KB
testcase_16 AC 46 ms
60,296 KB
testcase_17 AC 1,980 ms
79,088 KB
testcase_18 AC 677 ms
75,984 KB
testcase_19 AC 479 ms
75,404 KB
testcase_20 AC 45 ms
60,252 KB
testcase_21 AC 52 ms
62,900 KB
testcase_22 AC 195 ms
75,884 KB
testcase_23 AC 37 ms
52,564 KB
testcase_24 AC 38 ms
52,220 KB
testcase_25 AC 38 ms
53,012 KB
testcase_26 AC 170 ms
75,424 KB
testcase_27 AC 142 ms
75,844 KB
testcase_28 TLE -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def polymul(f,g):
    lf = len(f)
    lg = len(g)
    res = [0]*(lf+lg-1)
    for i in range(lf):
        for j in range(lg):
            res[i+j] += f[i]*g[j]
            res[i+j] %= MOD
    return res

MOD = 10**9+7
n,k = map(int,input().split())
a = [1]
for i in range(n):
    a = polymul(a,[1]*(i+1))
print(sum(a[:k+1])%MOD)
0