結果

問題 No.1742 Binary Indexed Train
ユーザー 👑 KazunKazun
提出日時 2022-04-13 00:47:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 477 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,440 KB
最終ジャッジ日時 2024-12-21 13:26:39
合計ジャッジ時間 65,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
15,872 KB
testcase_01 AC 29 ms
17,568 KB
testcase_02 AC 31 ms
21,888 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 202 ms
28,416 KB
testcase_07 AC 198 ms
24,100 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 430 ms
12,672 KB
testcase_16 AC 636 ms
11,648 KB
testcase_17 AC 980 ms
16,896 KB
testcase_18 AC 1,266 ms
16,384 KB
testcase_19 AC 377 ms
14,080 KB
testcase_20 AC 56 ms
10,880 KB
testcase_21 AC 523 ms
12,800 KB
testcase_22 AC 1,264 ms
17,024 KB
testcase_23 AC 170 ms
10,880 KB
testcase_24 AC 81 ms
10,752 KB
testcase_25 AC 2,148 ms
14,080 KB
testcase_26 AC 460 ms
14,720 KB
testcase_27 AC 1,771 ms
13,952 KB
testcase_28 AC 113 ms
11,008 KB
testcase_29 AC 1,877 ms
16,000 KB
testcase_30 AC 1,386 ms
13,056 KB
testcase_31 TLE -
testcase_32 AC 1,350 ms
12,800 KB
testcase_33 AC 482 ms
11,264 KB
testcase_34 AC 2,549 ms
33,440 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