結果

問題 No.1742 Binary Indexed Train
ユーザー wolgnikwolgnik
提出日時 2021-11-12 22:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,554 ms / 3,000 ms
コード長 391 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-25 20:00:33
合計ジャッジ時間 21,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 33 ms
52,648 KB
testcase_02 AC 34 ms
52,940 KB
testcase_03 AC 1,426 ms
75,860 KB
testcase_04 AC 1,449 ms
76,288 KB
testcase_05 AC 1,521 ms
76,032 KB
testcase_06 AC 109 ms
76,260 KB
testcase_07 AC 109 ms
76,288 KB
testcase_08 AC 972 ms
76,416 KB
testcase_09 AC 902 ms
75,776 KB
testcase_10 AC 926 ms
76,544 KB
testcase_11 AC 897 ms
76,160 KB
testcase_12 AC 921 ms
76,160 KB
testcase_13 AC 1,443 ms
75,776 KB
testcase_14 AC 1,493 ms
76,544 KB
testcase_15 AC 148 ms
75,904 KB
testcase_16 AC 183 ms
73,856 KB
testcase_17 AC 240 ms
76,416 KB
testcase_18 AC 269 ms
76,032 KB
testcase_19 AC 112 ms
76,416 KB
testcase_20 AC 71 ms
67,840 KB
testcase_21 AC 163 ms
75,776 KB
testcase_22 AC 317 ms
75,904 KB
testcase_23 AC 89 ms
67,456 KB
testcase_24 AC 71 ms
64,768 KB
testcase_25 AC 477 ms
75,776 KB
testcase_26 AC 137 ms
76,288 KB
testcase_27 AC 420 ms
76,032 KB
testcase_28 AC 80 ms
70,144 KB
testcase_29 AC 403 ms
75,904 KB
testcase_30 AC 559 ms
75,904 KB
testcase_31 AC 1,554 ms
76,288 KB
testcase_32 AC 483 ms
75,776 KB
testcase_33 AC 203 ms
70,528 KB
testcase_34 AC 853 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, Q = map(int, input().split())

table = [1 << i for i in range(N + 1)]

for _ in range(Q):
  s, t = map(int, input().split())
  res = 0

  while s < t:
    ok = 0
    ng = N + 1
    while ng - ok > 1:
      m = (ok + ng) // 2
      x = table[m]
      if s % x == 0 and s + x <= t: ok = m
      else: ng = m
    s += table[ok]
    res += 1
  print(res)
0