結果

問題 No.1742 Binary Indexed Train
ユーザー ShirotsumeShirotsume
提出日時 2021-10-31 16:34:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 477 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-11-25 11:08:32
合計ジャッジ時間 66,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 AC 31 ms
16,128 KB
testcase_02 AC 30 ms
16,000 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 224 ms
22,656 KB
testcase_07 AC 225 ms
28,544 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 486 ms
19,488 KB
testcase_16 AC 712 ms
11,392 KB
testcase_17 AC 1,095 ms
16,896 KB
testcase_18 AC 1,221 ms
16,384 KB
testcase_19 AC 380 ms
14,208 KB
testcase_20 AC 63 ms
11,008 KB
testcase_21 AC 517 ms
12,544 KB
testcase_22 AC 1,388 ms
16,896 KB
testcase_23 AC 193 ms
11,136 KB
testcase_24 AC 93 ms
10,752 KB
testcase_25 AC 2,379 ms
14,080 KB
testcase_26 AC 523 ms
14,464 KB
testcase_27 AC 2,004 ms
13,824 KB
testcase_28 AC 119 ms
11,008 KB
testcase_29 AC 2,104 ms
16,256 KB
testcase_30 AC 1,571 ms
12,928 KB
testcase_31 TLE -
testcase_32 AC 1,519 ms
12,544 KB
testcase_33 AC 542 ms
11,392 KB
testcase_34 AC 2,848 ms
20,352 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