結果

問題 No.741 AscNumber(Easy)
ユーザー kurimupykurimupy
提出日時 2020-06-15 15:55:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 171,740 KB
最終ジャッジ日時 2024-07-03 11:26:59
合計ジャッジ時間 6,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,204 KB
testcase_01 AC 36 ms
52,416 KB
testcase_02 AC 39 ms
52,656 KB
testcase_03 AC 39 ms
53,224 KB
testcase_04 AC 38 ms
52,656 KB
testcase_05 AC 35 ms
52,412 KB
testcase_06 AC 35 ms
53,188 KB
testcase_07 AC 37 ms
52,620 KB
testcase_08 AC 38 ms
53,204 KB
testcase_09 AC 37 ms
53,068 KB
testcase_10 AC 36 ms
52,136 KB
testcase_11 AC 36 ms
52,660 KB
testcase_12 AC 39 ms
53,028 KB
testcase_13 AC 36 ms
53,004 KB
testcase_14 AC 36 ms
54,192 KB
testcase_15 AC 36 ms
52,916 KB
testcase_16 AC 36 ms
53,404 KB
testcase_17 AC 39 ms
52,656 KB
testcase_18 AC 36 ms
53,340 KB
testcase_19 AC 37 ms
53,160 KB
testcase_20 AC 36 ms
53,200 KB
testcase_21 AC 37 ms
53,876 KB
testcase_22 AC 37 ms
53,928 KB
testcase_23 AC 38 ms
53,472 KB
testcase_24 AC 37 ms
54,692 KB
testcase_25 AC 37 ms
53,076 KB
testcase_26 AC 37 ms
53,084 KB
testcase_27 AC 36 ms
52,976 KB
testcase_28 AC 36 ms
52,192 KB
testcase_29 AC 36 ms
52,744 KB
testcase_30 AC 36 ms
53,384 KB
testcase_31 AC 36 ms
53,196 KB
testcase_32 AC 35 ms
53,380 KB
testcase_33 AC 36 ms
53,540 KB
testcase_34 AC 38 ms
54,560 KB
testcase_35 AC 192 ms
147,680 KB
testcase_36 AC 97 ms
96,052 KB
testcase_37 AC 133 ms
120,780 KB
testcase_38 AC 132 ms
120,596 KB
testcase_39 AC 98 ms
95,752 KB
testcase_40 AC 136 ms
121,152 KB
testcase_41 AC 187 ms
146,788 KB
testcase_42 AC 130 ms
120,436 KB
testcase_43 AC 92 ms
95,124 KB
testcase_44 AC 146 ms
121,960 KB
testcase_45 AC 178 ms
146,000 KB
testcase_46 AC 191 ms
147,628 KB
testcase_47 AC 57 ms
74,976 KB
testcase_48 AC 192 ms
147,316 KB
testcase_49 AC 183 ms
146,204 KB
testcase_50 AC 52 ms
70,228 KB
testcase_51 AC 96 ms
95,308 KB
testcase_52 AC 228 ms
171,456 KB
testcase_53 AC 225 ms
171,248 KB
testcase_54 AC 221 ms
171,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#コンビネーションクラスの作成
class Data():
    def __init__(self):
        self.power = 1
        self.rev = 1


class Combi():
    def __init__(self, N, mod):
        self.lists = [Data() for _ in range(N+1)]
        self.mod = mod
        for i in range(2, N+1):
            self.lists[i].power = ((self.lists[i-1].power)*i) % self.mod
        self.lists[N].rev = pow(self.lists[N].power, self.mod-2, self.mod)
        for j in range(N, 0, -1):
            self.lists[j-1].rev = ((self.lists[j].rev)*j) % self.mod

    def combi(self, K, R):
        if K < R:
            return 0
        else:
            return ((self.lists[K].power)*(self.lists[K-R].rev)*(self.lists[R].rev)) % self.mod


N = int(input())
c = Combi(N+10, 10**9+7)
ans = c.combi(N+9, 9)
print(ans)

0