結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 1,955 ms
93,824 KB
testcase_04 AC 1,470 ms
91,776 KB
testcase_05 AC 1,519 ms
92,032 KB
testcase_06 AC 335 ms
78,720 KB
testcase_07 AC 334 ms
78,336 KB
testcase_08 AC 2,146 ms
102,656 KB
testcase_09 AC 2,109 ms
102,912 KB
testcase_10 AC 2,163 ms
102,912 KB
testcase_11 AC 2,169 ms
103,040 KB
testcase_12 AC 2,208 ms
102,784 KB
testcase_13 AC 1,379 ms
91,392 KB
testcase_14 AC 1,403 ms
91,904 KB
testcase_15 AC 376 ms
78,336 KB
testcase_16 AC 417 ms
80,256 KB
testcase_17 AC 830 ms
80,384 KB
testcase_18 AC 837 ms
81,536 KB
testcase_19 AC 414 ms
78,796 KB
testcase_20 AC 130 ms
76,928 KB
testcase_21 AC 400 ms
78,592 KB
testcase_22 AC 952 ms
82,816 KB
testcase_23 AC 207 ms
77,312 KB
testcase_24 AC 137 ms
76,800 KB
testcase_25 AC 1,126 ms
88,192 KB
testcase_26 AC 497 ms
79,488 KB
testcase_27 AC 948 ms
86,144 KB
testcase_28 AC 187 ms
77,056 KB
testcase_29 AC 1,024 ms
83,968 KB
testcase_30 AC 679 ms
81,536 KB
testcase_31 AC 1,377 ms
91,008 KB
testcase_32 AC 588 ms
81,024 KB
testcase_33 AC 294 ms
78,336 KB
testcase_34 AC 1,171 ms
85,632 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