結果

問題 No.741 AscNumber(Easy)
ユーザー 已经死了已经死了
提出日時 2024-07-23 15:51:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 2,527 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 139,992 KB
最終ジャッジ日時 2024-07-23 15:51:29
合計ジャッジ時間 21,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
139,820 KB
testcase_01 AC 341 ms
139,784 KB
testcase_02 AC 335 ms
139,608 KB
testcase_03 AC 343 ms
139,964 KB
testcase_04 AC 329 ms
139,880 KB
testcase_05 AC 328 ms
139,676 KB
testcase_06 AC 346 ms
139,752 KB
testcase_07 AC 376 ms
139,744 KB
testcase_08 AC 333 ms
139,976 KB
testcase_09 AC 338 ms
139,752 KB
testcase_10 AC 329 ms
139,836 KB
testcase_11 AC 330 ms
139,624 KB
testcase_12 AC 377 ms
139,704 KB
testcase_13 AC 332 ms
139,760 KB
testcase_14 AC 341 ms
139,632 KB
testcase_15 AC 345 ms
139,888 KB
testcase_16 AC 325 ms
139,816 KB
testcase_17 AC 339 ms
139,924 KB
testcase_18 AC 350 ms
139,652 KB
testcase_19 AC 347 ms
139,848 KB
testcase_20 AC 341 ms
139,692 KB
testcase_21 AC 348 ms
139,684 KB
testcase_22 AC 342 ms
139,712 KB
testcase_23 AC 369 ms
139,800 KB
testcase_24 AC 346 ms
139,604 KB
testcase_25 AC 344 ms
139,828 KB
testcase_26 AC 329 ms
139,712 KB
testcase_27 AC 324 ms
139,644 KB
testcase_28 AC 346 ms
139,740 KB
testcase_29 AC 321 ms
139,588 KB
testcase_30 AC 331 ms
139,616 KB
testcase_31 AC 332 ms
139,692 KB
testcase_32 AC 310 ms
139,808 KB
testcase_33 AC 316 ms
139,616 KB
testcase_34 AC 367 ms
139,628 KB
testcase_35 AC 318 ms
139,744 KB
testcase_36 AC 340 ms
139,752 KB
testcase_37 AC 335 ms
139,632 KB
testcase_38 AC 315 ms
139,748 KB
testcase_39 AC 325 ms
139,908 KB
testcase_40 AC 357 ms
139,788 KB
testcase_41 AC 307 ms
139,980 KB
testcase_42 AC 348 ms
139,888 KB
testcase_43 AC 318 ms
139,612 KB
testcase_44 AC 325 ms
139,856 KB
testcase_45 AC 321 ms
139,832 KB
testcase_46 AC 336 ms
139,788 KB
testcase_47 AC 317 ms
139,992 KB
testcase_48 AC 317 ms
139,636 KB
testcase_49 AC 334 ms
139,688 KB
testcase_50 AC 329 ms
139,608 KB
testcase_51 AC 344 ms
139,892 KB
testcase_52 AC 346 ms
139,752 KB
testcase_53 AC 330 ms
139,804 KB
testcase_54 AC 354 ms
139,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os,sys,random,threading
#sys.exit() 退出程序
#sys.setrecursionlimit(10**6) #调整栈空间
from random import randint,choice,shuffle
#randint(a,b)从[a,b]范围随机选择一个数
#choice(seq)seq可以是一个列表,元组或字符串,从seq中随机选取一个元素
#shuffle(x)将一个可变的序列x中的元素打乱
from copy import deepcopy
from io import BytesIO,IOBase
from types import GeneratorType
from functools import lru_cache,reduce
#reduce(op,迭代对象)
from bisect import bisect_left,bisect_right
#bisect_left(x) 大于等于x的第一个下标
#bisect_right(x) 大于x的第一个下标
from collections import Counter,defaultdict,deque
from itertools import accumulate,combinations,permutations
#accumulate(a)用a序列生成一个累积迭代器,一般list化前面放个[0]做前缀和用
#combinations(a,k)a序列选k个 组合迭代器
#permutations(a,k)a序列选k个 排列迭代器
from heapq import  heapify,heappop,heappush
#heapify将列表转为堆
from typing import Generic,Iterable,Iterator,TypeVar,Union,List
from string import ascii_lowercase,ascii_uppercase,digits
#小写字母,大写字母,十进制数字
from math import ceil,floor,sqrt,pi,factorial,gcd,log,log10,log2,inf
#ceil向上取整,floor向下取整 ,sqrt开方 ,factorial阶乘
from decimal import Decimal,getcontext
#Decimal(s) 实例化Decimal对象,一般使用字符串
#getcontext().prec=100 修改精度
from sys import stdin, stdout, setrecursionlimit
input = lambda: sys.stdin.readline().rstrip("\r\n")
MI = lambda :map(int,input().split())
li = lambda :list(MI())
ii = lambda :int(input())
mod = int(1e9 + 7) #998244353
inf = 1<<60
py = lambda :print("YES")
pn = lambda :print("NO")
DIRS = [(0, 1), (1, 0), (0, -1), (-1, 0)]  # 右下左上
DIRS8 = [(0, 1), (1, 1), (1, 0), (1, -1), (0, -1), (-1, -1), (-1, 0),(-1, 1)]  # →↘↓↙←↖↑↗

MOD=mod = 10**9+7
N=2*10**6+1
fac = [1]*N  #fac[i] i的阶乘
ifac = [1]*N #ifac[i] i的阶乘 的逆元
inv = [0]*N  #inv[i]  i的逆元
inv[1]=1 
for i in range(2, N):
    fac[i] = fac[i-1]*i%mod
    inv[i] = (mod - mod // i) * inv[mod % i] % mod
    ifac[i] = ifac[i-1]*inv[i]%mod

def C(n: int, k: int) -> int:  #不重复组合数,n个不同物品不重复无序的取出k个
    if n < 0 or k < 0 or n < k:
        return 0
    return ((fac[n] * ifac[k]) % MOD * ifac[n - k]) % MOD

n=ii()

res=0

for i in range(1,11):
    if i>n:
        break
    res+=C(n-1,i-1)*C(10,i)
    #print(i,C(n,i)*C(10,i))
    res%=mod

print(res)

0