結果

問題 No.741 AscNumber(Easy)
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-25 16:56:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,016 KB
最終ジャッジ日時 2024-06-25 07:43:10
合計ジャッジ時間 9,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
106,280 KB
testcase_01 AC 90 ms
106,372 KB
testcase_02 AC 89 ms
106,492 KB
testcase_03 AC 88 ms
106,624 KB
testcase_04 AC 90 ms
106,300 KB
testcase_05 AC 89 ms
106,312 KB
testcase_06 AC 88 ms
106,368 KB
testcase_07 AC 88 ms
106,624 KB
testcase_08 AC 89 ms
106,420 KB
testcase_09 AC 89 ms
106,624 KB
testcase_10 AC 89 ms
106,660 KB
testcase_11 AC 89 ms
106,436 KB
testcase_12 AC 90 ms
106,672 KB
testcase_13 AC 87 ms
106,736 KB
testcase_14 AC 88 ms
106,720 KB
testcase_15 AC 89 ms
106,680 KB
testcase_16 AC 89 ms
106,372 KB
testcase_17 AC 89 ms
106,484 KB
testcase_18 AC 88 ms
106,752 KB
testcase_19 AC 88 ms
106,400 KB
testcase_20 AC 90 ms
106,624 KB
testcase_21 AC 88 ms
106,624 KB
testcase_22 AC 88 ms
106,752 KB
testcase_23 AC 90 ms
106,312 KB
testcase_24 AC 89 ms
106,280 KB
testcase_25 AC 89 ms
106,712 KB
testcase_26 AC 89 ms
106,496 KB
testcase_27 AC 89 ms
106,752 KB
testcase_28 AC 90 ms
106,276 KB
testcase_29 AC 89 ms
106,624 KB
testcase_30 AC 89 ms
106,248 KB
testcase_31 AC 88 ms
106,496 KB
testcase_32 AC 89 ms
106,624 KB
testcase_33 AC 89 ms
106,368 KB
testcase_34 AC 91 ms
106,584 KB
testcase_35 AC 162 ms
106,812 KB
testcase_36 AC 122 ms
106,612 KB
testcase_37 AC 127 ms
106,764 KB
testcase_38 AC 127 ms
106,704 KB
testcase_39 AC 121 ms
106,880 KB
testcase_40 AC 132 ms
106,880 KB
testcase_41 AC 156 ms
106,880 KB
testcase_42 AC 123 ms
106,980 KB
testcase_43 AC 115 ms
106,880 KB
testcase_44 AC 138 ms
106,880 KB
testcase_45 AC 143 ms
106,704 KB
testcase_46 AC 158 ms
106,832 KB
testcase_47 AC 101 ms
106,856 KB
testcase_48 AC 156 ms
106,624 KB
testcase_49 AC 145 ms
106,776 KB
testcase_50 AC 99 ms
106,700 KB
testcase_51 AC 116 ms
106,656 KB
testcase_52 AC 163 ms
106,972 KB
testcase_53 AC 166 ms
107,016 KB
testcase_54 AC 165 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 2*10**6
mod = 10**9+7
fac = [1]*(N+1)
finv = [1]*(N+1)
for i in range(N):
    fac[i+1] = fac[i] * (i+1) % mod
finv[-1] = pow(fac[-1], mod-2, mod)
for i in reversed(range(N)):
    finv[i] = finv[i+1] * (i+1) % mod

def cmb1(n, r, mod):
    if r <0 or r > n:
        return 0
    r = min(r, n-r)
    return fac[n] * finv[r] * finv[n-r] % mod

n = int(input())
ans = 1
for i in range(1, n+1):
    ans += cmb1(i+8, 8, mod)
print(ans%mod)
0