結果

問題 No.1742 Binary Indexed Train
ユーザー wolgnikwolgnik
提出日時 2021-11-12 22:35:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,587 ms / 3,000 ms
コード長 391 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-05-04 09:55:48
合計ジャッジ時間 21,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 1,483 ms
76,032 KB
testcase_04 AC 1,497 ms
76,784 KB
testcase_05 AC 1,587 ms
76,416 KB
testcase_06 AC 93 ms
76,544 KB
testcase_07 AC 93 ms
76,672 KB
testcase_08 AC 1,019 ms
76,544 KB
testcase_09 AC 926 ms
76,928 KB
testcase_10 AC 949 ms
76,436 KB
testcase_11 AC 917 ms
76,544 KB
testcase_12 AC 933 ms
76,808 KB
testcase_13 AC 1,474 ms
76,300 KB
testcase_14 AC 1,565 ms
76,800 KB
testcase_15 AC 141 ms
76,288 KB
testcase_16 AC 175 ms
74,840 KB
testcase_17 AC 242 ms
76,160 KB
testcase_18 AC 274 ms
76,628 KB
testcase_19 AC 106 ms
76,544 KB
testcase_20 AC 56 ms
68,224 KB
testcase_21 AC 145 ms
75,904 KB
testcase_22 AC 298 ms
76,544 KB
testcase_23 AC 74 ms
66,944 KB
testcase_24 AC 58 ms
65,280 KB
testcase_25 AC 461 ms
75,904 KB
testcase_26 AC 138 ms
76,280 KB
testcase_27 AC 422 ms
76,416 KB
testcase_28 AC 65 ms
70,656 KB
testcase_29 AC 388 ms
76,160 KB
testcase_30 AC 486 ms
76,076 KB
testcase_31 AC 1,386 ms
76,544 KB
testcase_32 AC 494 ms
76,032 KB
testcase_33 AC 197 ms
71,296 KB
testcase_34 AC 882 ms
76,160 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