結果

問題 No.1742 Binary Indexed Train
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-14 18:02:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 3,000 ms
コード長 223 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-05-07 09:09:27
合計ジャッジ時間 10,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 361 ms
76,032 KB
testcase_04 AC 346 ms
76,160 KB
testcase_05 AC 369 ms
76,416 KB
testcase_06 AC 325 ms
76,672 KB
testcase_07 AC 306 ms
76,288 KB
testcase_08 AC 409 ms
76,544 KB
testcase_09 AC 406 ms
76,160 KB
testcase_10 AC 405 ms
76,032 KB
testcase_11 AC 418 ms
76,160 KB
testcase_12 AC 406 ms
76,416 KB
testcase_13 AC 315 ms
76,160 KB
testcase_14 AC 330 ms
76,160 KB
testcase_15 AC 146 ms
76,032 KB
testcase_16 AC 128 ms
76,032 KB
testcase_17 AC 306 ms
76,160 KB
testcase_18 AC 296 ms
76,032 KB
testcase_19 AC 204 ms
76,288 KB
testcase_20 AC 84 ms
70,400 KB
testcase_21 AC 171 ms
76,544 KB
testcase_22 AC 315 ms
76,288 KB
testcase_23 AC 86 ms
70,528 KB
testcase_24 AC 75 ms
67,840 KB
testcase_25 AC 243 ms
76,288 KB
testcase_26 AC 225 ms
76,032 KB
testcase_27 AC 225 ms
76,288 KB
testcase_28 AC 95 ms
73,088 KB
testcase_29 AC 298 ms
76,032 KB
testcase_30 AC 166 ms
76,032 KB
testcase_31 AC 333 ms
76,160 KB
testcase_32 AC 163 ms
76,416 KB
testcase_33 AC 107 ms
76,160 KB
testcase_34 AC 237 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
for _ in range(q):
	s, t = map(int, input().split())
	ans = 0
	s += 1 << n; t += 1 << n
	while s < t:
		if s & 1: ans += 1; s += 1
		if t & 1: ans += 1; t -= 1
		s >>= 1; t >>= 1
	print(ans)
0