結果

問題 No.1011 Infinite Stairs
ユーザー amyuamyu
提出日時 2020-03-20 21:46:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 676 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 154,252 KB
最終ジャッジ日時 2024-12-15 05:13:10
合計ジャッジ時間 22,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,932 KB
testcase_01 AC 37 ms
130,236 KB
testcase_02 AC 168 ms
83,480 KB
testcase_03 TLE -
testcase_04 AC 847 ms
83,744 KB
testcase_05 TLE -
testcase_06 AC 34 ms
52,900 KB
testcase_07 AC 136 ms
76,436 KB
testcase_08 AC 36 ms
52,380 KB
testcase_09 AC 61 ms
69,224 KB
testcase_10 AC 119 ms
76,188 KB
testcase_11 AC 950 ms
76,820 KB
testcase_12 AC 106 ms
76,336 KB
testcase_13 AC 656 ms
76,620 KB
testcase_14 AC 79 ms
76,100 KB
testcase_15 AC 756 ms
76,436 KB
testcase_16 TLE -
testcase_17 AC 357 ms
76,768 KB
testcase_18 AC 1,866 ms
77,664 KB
testcase_19 AC 112 ms
76,644 KB
testcase_20 AC 91 ms
76,556 KB
testcase_21 AC 918 ms
76,800 KB
testcase_22 AC 1,588 ms
76,892 KB
testcase_23 AC 1,019 ms
76,872 KB
testcase_24 AC 1,001 ms
76,788 KB
testcase_25 AC 1,545 ms
76,988 KB
testcase_26 AC 408 ms
154,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d,k=map(int,input().split())
mod=10**9+7
No=2
while No<=k:
    No*=2
tree=[0]*(2*No)
#kをxにする
def update(k,x):
    k+=No-1
    tree[k]=x
    while k>0:
        k=(k-1)//2
        tree[k]=(tree[k*2+1]+tree[k*2+2])%mod
#lからrまでの和(l,r含む)
def query(l,r):
    L=l+No-1
    R=r+No-1
    s=0
    while L<=R:
        if R&1:
            s+=tree[R]
            s%=mod
            R-=2
        else:
            R-=1
        if L&1:
            L-=1
        else:
            s+=tree[L]
            s%=mod
        L>>=1;R>>=1
    return s%mod
update(0,1)
for j in range(n):
    for i in range(k,-1,-1):
        update(i,query(max(i-d,0),i-1))
print(tree[k+No-1])
0