結果

問題 No.660 家を通り過ぎないランダムウォーク問題
ユーザー titiatitia
提出日時 2024-07-10 04:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 150,000 KB
最終ジャッジ日時 2024-07-10 04:58:58
合計ジャッジ時間 8,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
134,912 KB
testcase_01 AC 134 ms
134,784 KB
testcase_02 AC 105 ms
134,528 KB
testcase_03 AC 105 ms
134,912 KB
testcase_04 AC 106 ms
134,784 KB
testcase_05 AC 103 ms
134,912 KB
testcase_06 AC 112 ms
134,912 KB
testcase_07 AC 103 ms
135,168 KB
testcase_08 AC 112 ms
134,656 KB
testcase_09 AC 110 ms
134,656 KB
testcase_10 AC 109 ms
134,528 KB
testcase_11 AC 134 ms
134,784 KB
testcase_12 AC 119 ms
134,400 KB
testcase_13 AC 108 ms
135,040 KB
testcase_14 AC 107 ms
135,168 KB
testcase_15 AC 107 ms
135,040 KB
testcase_16 AC 105 ms
134,656 KB
testcase_17 AC 105 ms
134,656 KB
testcase_18 AC 114 ms
134,912 KB
testcase_19 AC 104 ms
134,528 KB
testcase_20 AC 137 ms
134,400 KB
testcase_21 AC 105 ms
134,912 KB
testcase_22 AC 105 ms
134,912 KB
testcase_23 AC 107 ms
134,656 KB
testcase_24 AC 104 ms
134,912 KB
testcase_25 AC 104 ms
135,040 KB
testcase_26 AC 111 ms
135,424 KB
testcase_27 AC 106 ms
134,912 KB
testcase_28 AC 106 ms
135,296 KB
testcase_29 AC 129 ms
141,312 KB
testcase_30 AC 140 ms
141,312 KB
testcase_31 AC 117 ms
140,416 KB
testcase_32 AC 127 ms
141,440 KB
testcase_33 AC 121 ms
141,056 KB
testcase_34 AC 125 ms
141,952 KB
testcase_35 AC 140 ms
143,872 KB
testcase_36 AC 138 ms
142,976 KB
testcase_37 AC 142 ms
142,976 KB
testcase_38 AC 203 ms
147,840 KB
testcase_39 AC 190 ms
149,504 KB
testcase_40 AC 192 ms
149,504 KB
testcase_41 AC 238 ms
149,248 KB
testcase_42 AC 236 ms
149,872 KB
testcase_43 AC 277 ms
150,000 KB
testcase_44 AC 280 ms
149,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=10**9+7

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

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(5*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