結果

問題 No.1576 織姫と彦星
ユーザー y05h1k1ngy05h1k1ng
提出日時 2021-07-01 12:23:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-06-28 01:32:02
合計ジャッジ時間 9,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,248 KB
testcase_01 AC 46 ms
53,248 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 48 ms
53,120 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 47 ms
53,376 KB
testcase_06 AC 47 ms
53,376 KB
testcase_07 AC 104 ms
75,776 KB
testcase_08 AC 80 ms
75,520 KB
testcase_09 AC 58 ms
62,592 KB
testcase_10 AC 229 ms
76,160 KB
testcase_11 AC 56 ms
62,208 KB
testcase_12 AC 157 ms
75,904 KB
testcase_13 AC 163 ms
75,776 KB
testcase_14 AC 208 ms
76,288 KB
testcase_15 AC 192 ms
76,032 KB
testcase_16 AC 134 ms
75,648 KB
testcase_17 AC 176 ms
76,160 KB
testcase_18 AC 87 ms
75,776 KB
testcase_19 AC 119 ms
75,776 KB
testcase_20 AC 58 ms
64,128 KB
testcase_21 AC 181 ms
76,160 KB
testcase_22 AC 96 ms
75,776 KB
testcase_23 AC 65 ms
66,688 KB
testcase_24 AC 84 ms
75,648 KB
testcase_25 AC 175 ms
75,904 KB
testcase_26 AC 128 ms
76,032 KB
testcase_27 AC 57 ms
63,104 KB
testcase_28 AC 170 ms
76,032 KB
testcase_29 AC 129 ms
76,032 KB
testcase_30 AC 47 ms
53,888 KB
testcase_31 AC 127 ms
75,776 KB
testcase_32 AC 172 ms
75,904 KB
testcase_33 AC 330 ms
75,776 KB
testcase_34 AC 65 ms
65,280 KB
testcase_35 AC 146 ms
76,032 KB
testcase_36 AC 80 ms
75,776 KB
testcase_37 AC 353 ms
76,160 KB
testcase_38 AC 199 ms
76,160 KB
testcase_39 AC 162 ms
76,032 KB
testcase_40 AC 133 ms
75,904 KB
testcase_41 AC 147 ms
76,032 KB
testcase_42 AC 62 ms
65,664 KB
testcase_43 AC 85 ms
75,776 KB
testcase_44 AC 336 ms
76,032 KB
testcase_45 AC 115 ms
75,648 KB
testcase_46 AC 244 ms
75,904 KB
testcase_47 AC 59 ms
64,512 KB
testcase_48 AC 164 ms
76,032 KB
testcase_49 AC 153 ms
76,032 KB
testcase_50 AC 58 ms
63,872 KB
testcase_51 AC 61 ms
65,152 KB
testcase_52 AC 86 ms
75,776 KB
testcase_53 AC 221 ms
76,032 KB
testcase_54 AC 192 ms
76,288 KB
testcase_55 AC 199 ms
76,032 KB
testcase_56 AC 217 ms
76,032 KB
testcase_57 AC 57 ms
62,208 KB
testcase_58 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def hamming_distance(a: int, b: int) -> int:
    x = a ^ b
    return bin(x)[2:].count("1")

n = int(input())
start, end = map(int, input().split(" "))
stones = list(map(int, input().split(" ")))

que = deque([])
que.append((0, start))

while len(que):
    cnt, now = que.popleft()

    if hamming_distance(now, end) == 1:
        print(cnt)
        break

    for stone in stones:
        if hamming_distance(now, stone) == 1:
            que.append((cnt+1, stone))
            stones.remove(stone)
else:
    print(-1)
0