結果

問題 No.2393 Bit Grid Connected Component
ユーザー Iroha_3856Iroha_3856
提出日時 2024-10-07 21:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 76,272 KB
最終ジャッジ日時 2024-10-07 21:47:51
合計ジャッジ時間 3,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,964 KB
testcase_01 AC 33 ms
52,692 KB
testcase_02 AC 34 ms
52,020 KB
testcase_03 AC 33 ms
51,996 KB
testcase_04 AC 33 ms
52,500 KB
testcase_05 AC 32 ms
52,092 KB
testcase_06 AC 32 ms
52,024 KB
testcase_07 AC 32 ms
52,172 KB
testcase_08 AC 32 ms
51,372 KB
testcase_09 AC 32 ms
52,300 KB
testcase_10 AC 33 ms
52,160 KB
testcase_11 AC 33 ms
52,060 KB
testcase_12 AC 32 ms
52,508 KB
testcase_13 AC 34 ms
52,944 KB
testcase_14 AC 92 ms
76,132 KB
testcase_15 AC 97 ms
76,272 KB
testcase_16 AC 140 ms
75,828 KB
testcase_17 AC 334 ms
76,260 KB
testcase_18 AC 358 ms
76,236 KB
testcase_19 AC 316 ms
75,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
	x, y = map(int, input().split())
	for i in range(y, 61):
		if (x>>i&1)==0: 
		    print(2**i-1)
		    break
0