結果
| 問題 | No.2393 Bit Grid Connected Component |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-28 22:35:06 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 97 bytes |
| 記録 | |
| コンパイル時間 | 276 ms |
| コンパイル使用メモリ | 85,300 KB |
| 実行使用メモリ | 67,316 KB |
| 最終ジャッジ日時 | 2026-04-23 04:47:13 |
| 合計ジャッジ時間 | 2,121 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 20 |
ソースコード
for _ in range(int(input())): x,y=map(int,input().split());print(2**str((x|2**y-1)+1).find(1)-1)