結果

問題 No.2393 Bit Grid Connected Component
ユーザー lif4635lif4635
提出日時 2024-09-10 19:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 81,516 KB
実行使用メモリ 76,148 KB
最終ジャッジ日時 2024-09-10 19:08:19
合計ジャッジ時間 4,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,432 KB
testcase_01 AC 37 ms
52,108 KB
testcase_02 AC 38 ms
51,688 KB
testcase_03 AC 36 ms
52,108 KB
testcase_04 AC 37 ms
52,760 KB
testcase_05 AC 38 ms
52,892 KB
testcase_06 AC 36 ms
53,036 KB
testcase_07 AC 36 ms
52,052 KB
testcase_08 AC 37 ms
52,820 KB
testcase_09 AC 37 ms
52,380 KB
testcase_10 AC 37 ms
53,736 KB
testcase_11 AC 39 ms
51,888 KB
testcase_12 AC 37 ms
51,900 KB
testcase_13 AC 38 ms
53,120 KB
testcase_14 AC 75 ms
72,352 KB
testcase_15 AC 78 ms
73,828 KB
testcase_16 AC 125 ms
75,436 KB
testcase_17 AC 295 ms
76,148 KB
testcase_18 AC 301 ms
75,856 KB
testcase_19 AC 356 ms
75,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for i in range(t):
	x,y = map(int,input().split())
	x >>= y
	while x & 1 == 1:
		x //= 2
		y += 1
	print(2**y-1)		
0