結果
問題 | No.2393 Bit Grid Connected Component |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2023-07-28 21:30:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 290 ms / 2,000 ms |
コード長 | 265 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 77,352 KB |
最終ジャッジ日時 | 2024-10-06 17:43:54 |
合計ジャッジ時間 | 2,843 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 20 |
ソースコード
import sys from sys import stdin TT = int(stdin.readline()) for loop in range(TT): x,y = map(int,stdin.readline().split()) xbit = list(format(x,"b").zfill(70)) xbit.reverse() while xbit[y+1] == "1": y += 1 print (2**(y+1) - 1)