結果

問題 No.1742 Binary Indexed Train
ユーザー rlangevinrlangevin
提出日時 2023-08-24 08:58:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 686 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 77,336 KB
最終ジャッジ日時 2024-12-22 19:47:55
合計ジャッジ時間 14,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 412 ms
76,940 KB
testcase_04 AC 421 ms
77,080 KB
testcase_05 AC 413 ms
77,184 KB
testcase_06 AC 339 ms
77,056 KB
testcase_07 AC 345 ms
76,928 KB
testcase_08 AC 558 ms
76,564 KB
testcase_09 AC 506 ms
76,544 KB
testcase_10 AC 496 ms
76,336 KB
testcase_11 AC 511 ms
76,808 KB
testcase_12 AC 521 ms
76,800 KB
testcase_13 AC 358 ms
76,856 KB
testcase_14 AC 366 ms
77,184 KB
testcase_15 AC 184 ms
76,884 KB
testcase_16 AC 155 ms
76,544 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 211 ms
76,640 KB
testcase_22 AC 412 ms
76,688 KB
testcase_23 AC 115 ms
76,340 KB
testcase_24 AC 103 ms
76,416 KB
testcase_25 AC 359 ms
76,576 KB
testcase_26 WA -
testcase_27 AC 300 ms
76,652 KB
testcase_28 WA -
testcase_29 AC 403 ms
76,344 KB
testcase_30 AC 214 ms
76,928 KB
testcase_31 AC 424 ms
76,720 KB
testcase_32 AC 206 ms
76,960 KB
testcase_33 AC 135 ms
76,672 KB
testcase_34 AC 279 ms
76,820 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