結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-11-09 22:43:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 410 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-11-25 11:18:10
合計ジャッジ時間 84,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,128 KB
testcase_01 AC 31 ms
22,144 KB
testcase_02 AC 30 ms
16,000 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 369 ms
24,100 KB
testcase_07 AC 365 ms
22,656 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 394 ms
22,912 KB
testcase_14 AC 392 ms
24,488 KB
testcase_15 AC 1,407 ms
19,492 KB
testcase_16 AC 1,893 ms
17,152 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,097 ms
21,284 KB
testcase_20 AC 123 ms
16,512 KB
testcase_21 AC 1,500 ms
18,432 KB
testcase_22 TLE -
testcase_23 AC 468 ms
16,512 KB
testcase_24 AC 197 ms
22,144 KB
testcase_25 TLE -
testcase_26 AC 1,481 ms
25,728 KB
testcase_27 TLE -
testcase_28 AC 297 ms
11,264 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,428 ms
11,648 KB
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache
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