結果

問題 No.1742 Binary Indexed Train
ユーザー titiatitia
提出日時 2022-06-16 04:13:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,392 ms / 3,000 ms
コード長 426 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,952 KB
最終ジャッジ日時 2024-10-05 11:33:06
合計ジャッジ時間 18,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 35 ms
58,112 KB
testcase_03 AC 1,274 ms
79,232 KB
testcase_04 AC 1,392 ms
79,888 KB
testcase_05 AC 1,372 ms
79,640 KB
testcase_06 AC 93 ms
76,756 KB
testcase_07 AC 114 ms
76,916 KB
testcase_08 AC 763 ms
78,976 KB
testcase_09 AC 753 ms
79,212 KB
testcase_10 AC 809 ms
79,952 KB
testcase_11 AC 758 ms
78,804 KB
testcase_12 AC 765 ms
79,056 KB
testcase_13 AC 1,279 ms
79,504 KB
testcase_14 AC 1,306 ms
79,168 KB
testcase_15 AC 118 ms
76,668 KB
testcase_16 AC 191 ms
76,160 KB
testcase_17 AC 181 ms
77,312 KB
testcase_18 AC 196 ms
77,024 KB
testcase_19 AC 99 ms
76,672 KB
testcase_20 AC 74 ms
76,504 KB
testcase_21 AC 120 ms
76,288 KB
testcase_22 AC 220 ms
77,184 KB
testcase_23 AC 89 ms
76,356 KB
testcase_24 AC 59 ms
72,960 KB
testcase_25 AC 384 ms
77,912 KB
testcase_26 AC 117 ms
76,416 KB
testcase_27 AC 320 ms
77,128 KB
testcase_28 AC 65 ms
76,544 KB
testcase_29 AC 272 ms
76,988 KB
testcase_30 AC 441 ms
77,420 KB
testcase_31 AC 1,194 ms
79,232 KB
testcase_32 AC 459 ms
77,184 KB
testcase_33 AC 221 ms
76,928 KB
testcase_34 AC 815 ms
78,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())

for tests in range(Q):
    s,t=map(int,input().split())

    ANS=0

    while s<t:
        fb=N
        
        for i in range(N):
            if s & (1<<i) != 0 :
                fb=i
                break

        for i in range(fb,-1,-1):
            if s+(1<<i)<=t:
                ANS+=1
                s+=(1<<i)
                break

    print(ANS)
0