結果

問題 No.741 AscNumber(Easy)
ユーザー kurimupykurimupy
提出日時 2020-06-15 15:55:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,439 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 159,872 KB
最終ジャッジ日時 2024-07-03 11:29:18
合計ジャッジ時間 20,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 30 ms
11,008 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 29 ms
10,752 KB
testcase_33 AC 29 ms
10,880 KB
testcase_34 AC 30 ms
10,880 KB
testcase_35 AC 1,368 ms
152,960 KB
testcase_36 AC 558 ms
72,704 KB
testcase_37 AC 684 ms
83,840 KB
testcase_38 AC 676 ms
82,688 KB
testcase_39 AC 553 ms
71,552 KB
testcase_40 AC 755 ms
93,312 KB
testcase_41 AC 1,239 ms
140,416 KB
testcase_42 AC 599 ms
79,488 KB
testcase_43 AC 426 ms
60,416 KB
testcase_44 AC 936 ms
112,256 KB
testcase_45 AC 987 ms
120,320 KB
testcase_46 AC 1,238 ms
145,920 KB
testcase_47 AC 203 ms
33,664 KB
testcase_48 AC 1,267 ms
145,792 KB
testcase_49 AC 1,094 ms
123,776 KB
testcase_50 AC 147 ms
26,112 KB
testcase_51 AC 457 ms
62,976 KB
testcase_52 AC 1,439 ms
159,872 KB
testcase_53 AC 1,424 ms
159,872 KB
testcase_54 AC 1,417 ms
158,336 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