結果

問題 No.1742 Binary Indexed Train
ユーザー Shirotsume
提出日時 2021-11-09 22:44:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 424 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 1,579,108 KB
最終ジャッジ日時 2024-11-25 11:20:55
合計ジャッジ時間 87,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 MLE * 1
other AC * 8 TLE * 8 MLE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=None)
def solve(S,T,l,r):
    if T<=l or r<=S:
        return 0
    elif S<=l and r<=T:
        return 1
    else:
        m=(l+r)>>1
        x=solve(S,T,l,m)
        y=solve(S,T,m,r)
        return x+y


N,Q=map(int,input().split())

Max=1<<N
Ans=[0]*Q
for quest in range(Q):
    S,T=map(int,input().split())
    Ans[quest]=solve(S,T,0,Max)

print("\n".join(map(str,Ans)))
0