結果

問題 No.660 家を通り過ぎないランダムウォーク問題
ユーザー titiatitia
提出日時 2024-07-10 04:57:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,135 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-07-10 04:58:14
合計ジャッジ時間 14,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
26,624 KB
testcase_01 AC 171 ms
26,368 KB
testcase_02 AC 163 ms
26,368 KB
testcase_03 AC 168 ms
26,368 KB
testcase_04 AC 163 ms
26,368 KB
testcase_05 AC 169 ms
26,496 KB
testcase_06 AC 166 ms
26,496 KB
testcase_07 AC 164 ms
26,368 KB
testcase_08 AC 169 ms
26,368 KB
testcase_09 AC 164 ms
26,368 KB
testcase_10 AC 164 ms
26,496 KB
testcase_11 AC 164 ms
26,368 KB
testcase_12 AC 170 ms
26,368 KB
testcase_13 AC 164 ms
26,624 KB
testcase_14 AC 190 ms
26,624 KB
testcase_15 AC 163 ms
26,368 KB
testcase_16 AC 162 ms
26,496 KB
testcase_17 AC 168 ms
26,496 KB
testcase_18 AC 168 ms
26,368 KB
testcase_19 AC 165 ms
26,624 KB
testcase_20 AC 167 ms
26,368 KB
testcase_21 AC 174 ms
26,368 KB
testcase_22 AC 167 ms
26,368 KB
testcase_23 AC 168 ms
26,496 KB
testcase_24 AC 169 ms
26,496 KB
testcase_25 AC 168 ms
26,368 KB
testcase_26 AC 168 ms
26,624 KB
testcase_27 AC 173 ms
26,368 KB
testcase_28 AC 173 ms
26,368 KB
testcase_29 AC 184 ms
26,368 KB
testcase_30 AC 189 ms
26,496 KB
testcase_31 AC 186 ms
26,496 KB
testcase_32 AC 205 ms
26,368 KB
testcase_33 AC 209 ms
26,368 KB
testcase_34 AC 218 ms
26,368 KB
testcase_35 AC 321 ms
26,368 KB
testcase_36 AC 319 ms
26,496 KB
testcase_37 AC 338 ms
26,496 KB
testcase_38 AC 580 ms
26,624 KB
testcase_39 AC 603 ms
26,624 KB
testcase_40 AC 623 ms
26,368 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

FACT=[1]
for i in range(1,2*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

def calc(n):
    DP=[0]*(n*2+1)
    DP[n]=1
    ANS=0

    for i in range(n*2):
        NDP=[0]*(n*2+1)
        for j in range(n*2):
            NDP[j+1]+=DP[j]
            if j-1>=0:
                NDP[j-1]+=DP[j]
        DP=NDP
        ANS+=DP[-1]
        #print(DP[-1])

    return ANS
#a(n) = 8*binomial(2*n+1,n-3)/(n+5).
#a(n) = 9*binomial(2n,n-4)/(n+5).
#a(n) = 10*C(2n+1, n-4)/(n+6).
#a(n) = 11*binomial(2n,n-5)/(n+6).
#a(n) = 12 * C(2n+1,n-5) / (n+7).
#a(n) = 13*binomial(2n,n-6)/(n+7).
#for i in range(1,20):
#    print(i,calc(i))

n=int(input())
ANS=0
for i in range(n):
    if n%2==0:
        ANS+=n*Combi(2*i+1,i-(n-1)//2)*pow(i+(n+2)//2,mod-2,mod)
    else:
        ANS+=n*Combi(2*i,i-(n-1)//2)*pow(i+(n+2)//2,mod-2,mod)

print(ANS%mod)
    
            
0