結果

問題 No.1742 Binary Indexed Train
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-11-14 18:02:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 223 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-30 00:34:39
合計ジャッジ時間 69,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
15,744 KB
testcase_01 AC 28 ms
15,744 KB
testcase_02 AC 28 ms
15,744 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 739 ms
16,128 KB
testcase_07 AC 743 ms
21,376 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 556 ms
16,128 KB
testcase_16 AC 605 ms
10,624 KB
testcase_17 AC 1,393 ms
10,624 KB
testcase_18 AC 1,481 ms
10,624 KB
testcase_19 AC 607 ms
10,624 KB
testcase_20 AC 75 ms
10,752 KB
testcase_21 AC 610 ms
10,624 KB
testcase_22 AC 1,654 ms
10,752 KB
testcase_23 AC 172 ms
10,624 KB
testcase_24 AC 82 ms
10,624 KB
testcase_25 AC 2,014 ms
10,624 KB
testcase_26 AC 744 ms
10,752 KB
testcase_27 AC 1,713 ms
10,624 KB
testcase_28 AC 150 ms
10,624 KB
testcase_29 AC 1,877 ms
10,624 KB
testcase_30 AC 1,610 ms
10,624 KB
testcase_31 TLE -
testcase_32 AC 1,583 ms
10,624 KB
testcase_33 AC 559 ms
10,624 KB
testcase_34 AC 2,922 ms
16,000 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