結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-11-09 22:45:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 426 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 557,616 KB
最終ジャッジ日時 2024-11-25 11:24:00
合計ジャッジ時間 96,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,032 KB
testcase_01 AC 39 ms
334,092 KB
testcase_02 AC 45 ms
68,992 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 140 ms
85,960 KB
testcase_07 AC 147 ms
358,016 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 149 ms
84,864 KB
testcase_14 AC 158 ms
351,204 KB
testcase_15 TLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,973 ms
279,776 KB
testcase_20 AC 292 ms
407,660 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 911 ms
251,136 KB
testcase_24 AC 416 ms
437,668 KB
testcase_25 TLE -
testcase_26 MLE -
testcase_27 TLE -
testcase_28 AC 641 ms
477,952 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=100000)
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