結果

問題 No.1126 SUM
ユーザー kozykozy
提出日時 2020-07-24 17:30:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 1,000 ms
コード長 614 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-06-25 21:35:36
合計ジャッジ時間 2,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,264 KB
testcase_01 AC 98 ms
14,080 KB
testcase_02 AC 51 ms
11,904 KB
testcase_03 AC 37 ms
11,136 KB
testcase_04 AC 92 ms
13,952 KB
testcase_05 AC 85 ms
13,696 KB
testcase_06 AC 55 ms
12,160 KB
testcase_07 AC 38 ms
11,264 KB
testcase_08 AC 52 ms
11,904 KB
testcase_09 AC 75 ms
13,184 KB
testcase_10 AC 42 ms
11,392 KB
testcase_11 AC 34 ms
11,136 KB
testcase_12 AC 44 ms
11,648 KB
testcase_13 AC 40 ms
11,392 KB
testcase_14 AC 49 ms
11,776 KB
testcase_15 AC 45 ms
11,648 KB
testcase_16 AC 72 ms
13,184 KB
testcase_17 AC 59 ms
12,544 KB
testcase_18 AC 52 ms
11,904 KB
testcase_19 AC 78 ms
13,184 KB
testcase_20 AC 51 ms
12,160 KB
testcase_21 AC 76 ms
13,184 KB
testcase_22 AC 74 ms
13,056 KB
testcase_23 AC 90 ms
13,824 KB
testcase_24 AC 41 ms
11,392 KB
testcase_25 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r):
    if n - r < r: r = n - r
    if r == 0: return 1
    if r == 1: return n

    numerator = [n - r + k + 1 for k in range(r)]
    denominator = [k + 1 for k in range(r)]

    for p in range(2,r+1):
        pivot = denominator[p - 1]
        if pivot > 1:
            offset = (n - r) % p
            for k in range(p-1,r,p):
                numerator[k - offset] /= pivot
                denominator[k] /= pivot

    result = 1
    for k in range(r):
        if numerator[k] > 1:
            result *= int(numerator[k])

    return result
N,M=map(int,input().split())
print(cmb(M+1,N+1)%1000000007)
0