結果

問題 No.1742 Binary Indexed Train
ユーザー wolgnikwolgnik
提出日時 2021-11-12 22:11:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 296 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 153,616 KB
最終ジャッジ日時 2024-11-25 19:01:38
合計ジャッジ時間 68,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,088 KB
testcase_01 AC 33 ms
128,640 KB
testcase_02 AC 39 ms
63,744 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 111 ms
82,048 KB
testcase_07 AC 103 ms
153,616 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 380 ms
81,536 KB
testcase_16 AC 787 ms
153,088 KB
testcase_17 AC 554 ms
82,560 KB
testcase_18 AC 724 ms
76,472 KB
testcase_19 AC 173 ms
76,288 KB
testcase_20 AC 56 ms
66,944 KB
testcase_21 AC 352 ms
75,668 KB
testcase_22 AC 844 ms
76,672 KB
testcase_23 AC 162 ms
73,816 KB
testcase_24 AC 88 ms
67,200 KB
testcase_25 AC 2,467 ms
76,672 KB
testcase_26 AC 226 ms
76,708 KB
testcase_27 AC 2,240 ms
76,784 KB
testcase_28 AC 95 ms
73,924 KB
testcase_29 AC 1,309 ms
76,672 KB
testcase_30 AC 2,862 ms
77,188 KB
testcase_31 TLE -
testcase_32 AC 2,829 ms
76,988 KB
testcase_33 AC 1,005 ms
75,904 KB
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, Q = map(int, input().split())
for _ in range(Q):
  s, t = map(int, input().split())
  res = 0

  while s < t:
    for i in range(N, -1, -1):
      if s % pow(2, i) == 0 and s + pow(2, i) <= t:
        s += pow(2, i)
        break
    res += 1
  print(res)
0