結果

問題 No.741 AscNumber(Easy)
ユーザー prd_xxxprd_xxx
提出日時 2018-10-05 21:44:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,430 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 136,104 KB
最終ジャッジ日時 2024-10-12 13:01:59
合計ジャッジ時間 20,752 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 28 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 27 ms
10,624 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 27 ms
10,752 KB
testcase_29 AC 27 ms
10,752 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 28 ms
10,624 KB
testcase_33 AC 28 ms
10,880 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 1,353 ms
130,232 KB
testcase_36 AC 590 ms
62,640 KB
testcase_37 AC 684 ms
71,960 KB
testcase_38 AC 676 ms
70,968 KB
testcase_39 AC 576 ms
61,692 KB
testcase_40 AC 761 ms
80,012 KB
testcase_41 AC 1,237 ms
119,732 KB
testcase_42 AC 688 ms
68,252 KB
testcase_43 AC 493 ms
52,304 KB
testcase_44 AC 941 ms
95,932 KB
testcase_45 AC 1,018 ms
102,604 KB
testcase_46 AC 1,235 ms
124,364 KB
testcase_47 AC 221 ms
29,904 KB
testcase_48 AC 1,254 ms
124,324 KB
testcase_49 AC 1,037 ms
105,540 KB
testcase_50 AC 151 ms
23,492 KB
testcase_51 AC 477 ms
54,608 KB
testcase_52 AC 1,394 ms
136,104 KB
testcase_53 AC 1,430 ms
135,984 KB
testcase_54 AC 1,405 ms
134,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 10**9+7

fac = [1,1] + [0]*(N+20)
finv = [1,1] + [0]*(N+20)
inv = [0,1] + [0]*(N+20)
for i in range(2,N+21):
    fac[i] = fac[i-1] * i % MOD
    inv[i] = -inv[MOD%i] * (MOD // i) % MOD
    finv[i] = finv[i-1] * inv[i] % MOD

def ncr(n,r):
    if n < r: return 0
    if n < 0 or r < 0: return 0
    return fac[n] * (finv[r] * finv[n-r] % MOD) % MOD

ans = ncr(N+9,9)
print(ans)
0