結果

問題 No.1742 Binary Indexed Train
ユーザー suosuo
提出日時 2021-11-12 23:05:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 791 ms / 3,000 ms
コード長 637 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-05-04 10:46:18
合計ジャッジ時間 15,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 31 ms
52,480 KB
testcase_02 AC 31 ms
52,608 KB
testcase_03 AC 719 ms
76,800 KB
testcase_04 AC 716 ms
76,416 KB
testcase_05 AC 760 ms
76,288 KB
testcase_06 AC 345 ms
77,824 KB
testcase_07 AC 351 ms
77,824 KB
testcase_08 AC 772 ms
77,184 KB
testcase_09 AC 752 ms
77,056 KB
testcase_10 AC 791 ms
77,056 KB
testcase_11 AC 757 ms
77,016 KB
testcase_12 AC 740 ms
77,184 KB
testcase_13 AC 512 ms
76,160 KB
testcase_14 AC 511 ms
76,544 KB
testcase_15 AC 199 ms
77,056 KB
testcase_16 AC 171 ms
77,184 KB
testcase_17 AC 414 ms
77,056 KB
testcase_18 AC 415 ms
77,056 KB
testcase_19 AC 316 ms
76,936 KB
testcase_20 AC 114 ms
76,940 KB
testcase_21 AC 248 ms
76,800 KB
testcase_22 AC 447 ms
77,312 KB
testcase_23 AC 103 ms
77,056 KB
testcase_24 AC 92 ms
77,312 KB
testcase_25 AC 422 ms
77,436 KB
testcase_26 AC 274 ms
76,728 KB
testcase_27 AC 373 ms
76,928 KB
testcase_28 AC 115 ms
76,904 KB
testcase_29 AC 437 ms
77,056 KB
testcase_30 AC 263 ms
76,544 KB
testcase_31 AC 644 ms
76,416 KB
testcase_32 AC 287 ms
76,288 KB
testcase_33 AC 133 ms
76,160 KB
testcase_34 AC 421 ms
76,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
for i in range(q):
  s,t = map(int,input().split())
  if s == 0:
    print(bin(t).count('1'))
    continue
  ans = 0
  while (s).bit_length() != (t).bit_length():
    s += s & -s
    ans += 1
  if ans != 0:
    ans += bin(t).count('1') - 1
  else:
    ls = bin(s)
    lt = bin(t)
    for i in range(len(ls)):
      if ls[i] != lt[i]:
        ind = i
        break
    p = 1 << (len(ls) - ind - 1)
    if s % p != 0:
      while s // p != t // p:
        s += s & -s
        ans += 1
      ls = bin(s)
      lt = bin(t)
    for i in range(ind,len(ls)):
      if ls[i] != lt[i]:
        ans += 1
  print(ans)
0