結果

問題 No.1742 Binary Indexed Train
ユーザー suosuo
提出日時 2021-11-12 23:05:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 3,000 ms
コード長 637 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 77,608 KB
最終ジャッジ日時 2024-11-25 21:12:13
合計ジャッジ時間 16,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,116 KB
testcase_01 AC 37 ms
52,684 KB
testcase_02 AC 37 ms
52,448 KB
testcase_03 AC 761 ms
76,224 KB
testcase_04 AC 721 ms
76,224 KB
testcase_05 AC 729 ms
76,220 KB
testcase_06 AC 318 ms
77,608 KB
testcase_07 AC 318 ms
77,568 KB
testcase_08 AC 815 ms
76,888 KB
testcase_09 AC 787 ms
76,796 KB
testcase_10 AC 825 ms
76,800 KB
testcase_11 AC 796 ms
76,756 KB
testcase_12 AC 809 ms
76,544 KB
testcase_13 AC 499 ms
75,736 KB
testcase_14 AC 538 ms
76,004 KB
testcase_15 AC 203 ms
76,560 KB
testcase_16 AC 189 ms
76,716 KB
testcase_17 AC 457 ms
77,136 KB
testcase_18 AC 437 ms
76,568 KB
testcase_19 AC 277 ms
76,936 KB
testcase_20 AC 107 ms
76,328 KB
testcase_21 AC 222 ms
76,848 KB
testcase_22 AC 476 ms
76,652 KB
testcase_23 AC 116 ms
76,728 KB
testcase_24 AC 102 ms
76,516 KB
testcase_25 AC 435 ms
76,908 KB
testcase_26 AC 302 ms
76,468 KB
testcase_27 AC 411 ms
76,588 KB
testcase_28 AC 128 ms
76,584 KB
testcase_29 AC 476 ms
76,868 KB
testcase_30 AC 299 ms
76,308 KB
testcase_31 AC 669 ms
76,224 KB
testcase_32 AC 278 ms
76,260 KB
testcase_33 AC 133 ms
75,740 KB
testcase_34 AC 454 ms
76,420 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