結果

問題 No.1577 織姫と彦星2
ユーザー 👑 rin204rin204
提出日時 2022-03-23 14:53:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-10-11 13:08:13
合計ジャッジ時間 8,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 54 ms
63,360 KB
testcase_06 AC 50 ms
60,544 KB
testcase_07 AC 140 ms
84,352 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 63 ms
67,200 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 51 ms
59,904 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 80 ms
76,672 KB
testcase_28 WA -
testcase_29 AC 77 ms
71,168 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 56 ms
62,592 KB
testcase_33 AC 58 ms
61,696 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 75 ms
72,832 KB
testcase_43 AC 76 ms
72,960 KB
testcase_44 AC 59 ms
62,720 KB
testcase_45 WA -
testcase_46 AC 62 ms
66,432 KB
testcase_47 AC 80 ms
78,720 KB
testcase_48 WA -
testcase_49 AC 90 ms
73,088 KB
testcase_50 AC 77 ms
69,504 KB
testcase_51 AC 57 ms
62,464 KB
testcase_52 WA -
testcase_53 AC 123 ms
86,784 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 65 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
s, e = map(int, input().split())
stone = set(map(int, input().split()))
stone.add(e)
dist = {s:0}
queue = deque()
queue.append(s)
while queue:
    pos = queue.pop()
    for i in range(30):
        npos = pos ^ (1 << i)
        if npos not in dist and npos in stone:
            dist[npos] = dist[pos] + 1
            queue.append(npos)

print(dist.get(e, 0) - 1)
0