結果

問題 No.1742 Binary Indexed Train
ユーザー rlangevinrlangevin
提出日時 2023-08-24 08:58:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 77,264 KB
最終ジャッジ日時 2024-06-02 03:03:24
合計ジャッジ時間 12,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,076 KB
testcase_01 AC 32 ms
53,260 KB
testcase_02 AC 32 ms
52,536 KB
testcase_03 AC 343 ms
76,928 KB
testcase_04 AC 336 ms
77,136 KB
testcase_05 AC 351 ms
77,112 KB
testcase_06 AC 292 ms
77,120 KB
testcase_07 AC 303 ms
77,176 KB
testcase_08 AC 484 ms
76,708 KB
testcase_09 AC 427 ms
76,832 KB
testcase_10 AC 424 ms
76,540 KB
testcase_11 AC 419 ms
76,748 KB
testcase_12 AC 432 ms
76,796 KB
testcase_13 AC 299 ms
76,860 KB
testcase_14 AC 313 ms
77,264 KB
testcase_15 AC 163 ms
76,684 KB
testcase_16 AC 138 ms
77,068 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 169 ms
76,476 KB
testcase_22 AC 352 ms
76,956 KB
testcase_23 AC 101 ms
76,520 KB
testcase_24 AC 89 ms
76,392 KB
testcase_25 AC 285 ms
76,936 KB
testcase_26 WA -
testcase_27 AC 256 ms
76,772 KB
testcase_28 WA -
testcase_29 AC 338 ms
76,816 KB
testcase_30 AC 188 ms
77,048 KB
testcase_31 AC 365 ms
77,052 KB
testcase_32 AC 179 ms
77,004 KB
testcase_33 AC 112 ms
76,784 KB
testcase_34 AC 233 ms
77,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(S, T):
    if S == 0:
        ans = 0
        for i in range(65):
            ans += (T >> i) & 1
        return ans 
    flag = 0
    M = 65
    L = []
    start = -1
    ans = 0
    for i in range(M - 1, -1, -1):
        if flag == 0:
            if (T >> i) & 1 == ((S >> i) & 1) + 1:
                flag = 1
                start = i
        else:
            if (S >> i) & 1:
                L.append(i)
            if (T >> i) & 1:
                ans += 1
    if L:
        return ans + start - L[-1] - len(L) + 1
    else:
        return ans + start + 1


N, Q = map(int, input().split())
for _ in range(Q):
    S, T = map(int, input().split())
    print(solve(S, T))
0