結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-31 16:35:18
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 477 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,808 KB
最終ジャッジ日時 2024-05-04 04:24:07
合計ジャッジ時間 44,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,712 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 2,773 ms
93,312 KB
testcase_04 AC 2,003 ms
92,416 KB
testcase_05 AC 2,019 ms
93,952 KB
testcase_06 AC 131 ms
77,440 KB
testcase_07 AC 129 ms
77,568 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,809 ms
90,752 KB
testcase_14 AC 1,907 ms
92,032 KB
testcase_15 AC 464 ms
78,336 KB
testcase_16 AC 536 ms
79,872 KB
testcase_17 AC 904 ms
80,768 KB
testcase_18 AC 992 ms
81,664 KB
testcase_19 AC 357 ms
78,464 KB
testcase_20 AC 109 ms
76,160 KB
testcase_21 AC 470 ms
78,208 KB
testcase_22 AC 1,139 ms
82,432 KB
testcase_23 AC 200 ms
76,800 KB
testcase_24 AC 127 ms
76,160 KB
testcase_25 AC 1,613 ms
88,576 KB
testcase_26 AC 484 ms
78,592 KB
testcase_27 AC 1,317 ms
86,528 KB
testcase_28 AC 155 ms
76,416 KB
testcase_29 AC 1,361 ms
84,480 KB
testcase_30 AC 939 ms
81,536 KB
testcase_31 AC 1,802 ms
90,368 KB
testcase_32 AC 694 ms
80,640 KB
testcase_33 AC 304 ms
77,824 KB
testcase_34 AC 1,688 ms
86,400 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

#================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

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)

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