結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-11-09 22:50:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,112 ms / 3,000 ms
コード長 335 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 103,152 KB
最終ジャッジ日時 2024-11-25 11:25:32
合計ジャッジ時間 32,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 36 ms
52,732 KB
testcase_02 AC 35 ms
53,120 KB
testcase_03 AC 1,790 ms
93,560 KB
testcase_04 AC 1,446 ms
92,072 KB
testcase_05 AC 1,449 ms
92,328 KB
testcase_06 AC 306 ms
78,444 KB
testcase_07 AC 318 ms
78,396 KB
testcase_08 AC 2,096 ms
102,368 KB
testcase_09 AC 2,108 ms
103,152 KB
testcase_10 AC 2,106 ms
102,224 KB
testcase_11 AC 2,048 ms
102,820 KB
testcase_12 AC 2,112 ms
102,652 KB
testcase_13 AC 1,392 ms
91,256 KB
testcase_14 AC 1,355 ms
91,988 KB
testcase_15 AC 357 ms
78,312 KB
testcase_16 AC 412 ms
80,192 KB
testcase_17 AC 753 ms
80,416 KB
testcase_18 AC 816 ms
81,996 KB
testcase_19 AC 402 ms
78,540 KB
testcase_20 AC 112 ms
77,060 KB
testcase_21 AC 378 ms
78,468 KB
testcase_22 AC 888 ms
82,272 KB
testcase_23 AC 165 ms
77,004 KB
testcase_24 AC 120 ms
76,632 KB
testcase_25 AC 1,065 ms
88,452 KB
testcase_26 AC 476 ms
79,536 KB
testcase_27 AC 935 ms
86,540 KB
testcase_28 AC 161 ms
76,744 KB
testcase_29 AC 1,016 ms
84,300 KB
testcase_30 AC 619 ms
81,492 KB
testcase_31 AC 1,288 ms
90,672 KB
testcase_32 AC 541 ms
80,824 KB
testcase_33 AC 244 ms
78,268 KB
testcase_34 AC 1,097 ms
85,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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())
    print(solve(S, T, 0, Max))
0