結果

問題 No.616 へんなソート
ユーザー mkawa2mkawa2
提出日時 2020-06-09 19:05:52
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,360 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 851,712 KB
最終ジャッジ日時 2024-06-10 18:36:11
合計ジャッジ時間 6,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 45 ms
58,880 KB
testcase_03 AC 45 ms
60,800 KB
testcase_04 AC 56 ms
63,232 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 49 ms
63,104 KB
testcase_07 AC 48 ms
60,672 KB
testcase_08 AC 52 ms
65,280 KB
testcase_09 AC 53 ms
66,944 KB
testcase_10 AC 45 ms
61,440 KB
testcase_11 AC 49 ms
63,616 KB
testcase_12 AC 75 ms
83,968 KB
testcase_13 AC 1,055 ms
477,696 KB
testcase_14 AC 80 ms
83,728 KB
testcase_15 AC 49 ms
60,672 KB
testcase_16 AC 53 ms
64,768 KB
testcase_17 AC 448 ms
285,184 KB
testcase_18 AC 83 ms
84,984 KB
testcase_19 AC 118 ms
107,264 KB
testcase_20 AC 52 ms
64,128 KB
testcase_21 AC 53 ms
64,128 KB
testcase_22 AC 58 ms
71,936 KB
testcase_23 AC 35 ms
52,224 KB
testcase_24 AC 35 ms
52,480 KB
testcase_25 AC 35 ms
52,096 KB
testcase_26 AC 35 ms
52,864 KB
testcase_27 AC 34 ms
52,736 KB
testcase_28 MLE -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def MI(): return map(int, sys.stdin.readline().split())

class mint:
    def __init__(self, x):
        self.__x = x % md

    def __repr__(self):
        return str(self.__x)

    def __neg__(self):
        return mint(-self.__x)

    def __add__(self, other):
        if isinstance(other, mint): other = other.__x
        return mint(self.__x + other)

    def __sub__(self, other):
        if isinstance(other, mint): other = other.__x
        return mint(self.__x - other)

    def __rsub__(self, other):
        return mint(other - self.__x)

    def __mul__(self, other):
        if isinstance(other, mint): other = other.__x
        return mint(self.__x * other)

    __radd__ = __add__
    __rmul__ = __mul__

    def __truediv__(self, other):
        if isinstance(other, mint): other = other.__x
        return mint(self.__x * pow(other, md - 2, md))

    def __rtruediv__(self, other):
        return mint(other * pow(self.__x, md - 2, md))

    def __pow__(self, power, modulo=None):
        return mint(pow(self.__x, power, md))

md=10**9+7

def main():
    n,k=MI()
    MI()
    dp=[[0]*(k+1) for _ in range(n+1)]
    dp[0][0]=mint(1)
    for i in range(n):
        s=mint(0)
        w=n-i
        for j in range(k+1):
            s+=dp[i][j]
            if j-w>=0:s-=dp[i][j-w]
            dp[i+1][j]=s
    print(sum(dp[n]))

main()
0