結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,332 KB
testcase_01 AC 36 ms
53,100 KB
testcase_02 AC 35 ms
52,384 KB
testcase_03 AC 401 ms
77,204 KB
testcase_04 AC 394 ms
77,008 KB
testcase_05 AC 417 ms
77,468 KB
testcase_06 AC 392 ms
77,016 KB
testcase_07 AC 399 ms
77,092 KB
testcase_08 AC 539 ms
76,492 KB
testcase_09 AC 461 ms
76,588 KB
testcase_10 AC 477 ms
76,704 KB
testcase_11 AC 476 ms
77,004 KB
testcase_12 AC 494 ms
76,660 KB
testcase_13 AC 354 ms
76,984 KB
testcase_14 AC 357 ms
76,308 KB
testcase_15 AC 175 ms
76,888 KB
testcase_16 AC 139 ms
76,432 KB
testcase_17 AC 412 ms
76,860 KB
testcase_18 AC 386 ms
76,728 KB
testcase_19 AC 271 ms
77,020 KB
testcase_20 AC 86 ms
76,656 KB
testcase_21 AC 190 ms
76,660 KB
testcase_22 AC 417 ms
76,584 KB
testcase_23 AC 91 ms
76,724 KB
testcase_24 AC 78 ms
76,508 KB
testcase_25 AC 301 ms
76,416 KB
testcase_26 AC 305 ms
77,256 KB
testcase_27 AC 275 ms
76,832 KB
testcase_28 AC 101 ms
76,720 KB
testcase_29 AC 376 ms
76,456 KB
testcase_30 AC 212 ms
77,032 KB
testcase_31 AC 468 ms
76,988 KB
testcase_32 AC 197 ms
76,840 KB
testcase_33 AC 116 ms
76,840 KB
testcase_34 AC 273 ms
76,672 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())
    for i in range(65, -1, -1):
        vs, vt = (S >> i) & 1, (T >> i) & 1
        if vs != vt:
            break
        S -= vs * (1 << i)
        T -= vt * (1 << i)
    print(solve(S, T))
0