結果

問題 No.1742 Binary Indexed Train
ユーザー suosuo
提出日時 2021-11-12 23:01:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 608 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,764 KB
実行使用メモリ 168,832 KB
最終ジャッジ日時 2024-11-25 21:04:42
合計ジャッジ時間 56,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 34 ms
57,472 KB
testcase_02 AC 33 ms
143,872 KB
testcase_03 AC 724 ms
82,048 KB
testcase_04 AC 700 ms
168,832 KB
testcase_05 AC 657 ms
82,048 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 762 ms
165,500 KB
testcase_09 AC 740 ms
84,020 KB
testcase_10 AC 753 ms
77,288 KB
testcase_11 AC 721 ms
82,740 KB
testcase_12 AC 800 ms
166,700 KB
testcase_13 AC 527 ms
81,380 KB
testcase_14 AC 565 ms
167,148 KB
testcase_15 AC 205 ms
82,300 KB
testcase_16 AC 170 ms
165,308 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 209 ms
77,056 KB
testcase_22 TLE -
testcase_23 AC 108 ms
76,852 KB
testcase_24 AC 94 ms
76,408 KB
testcase_25 AC 398 ms
76,928 KB
testcase_26 TLE -
testcase_27 AC 354 ms
76,800 KB
testcase_28 TLE -
testcase_29 AC 511 ms
77,056 KB
testcase_30 AC 292 ms
76,416 KB
testcase_31 AC 648 ms
76,800 KB
testcase_32 AC 252 ms
76,224 KB
testcase_33 AC 119 ms
76,412 KB
testcase_34 AC 433 ms
164,608 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)
    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