結果

問題 No.1576 織姫と彦星
ユーザー d1k0b3od1k0b3o
提出日時 2021-07-18 18:47:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 65,284 KB
最終ジャッジ日時 2024-07-08 12:28:57
合計ジャッジ時間 4,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,860 KB
testcase_01 AC 38 ms
54,504 KB
testcase_02 AC 35 ms
54,104 KB
testcase_03 AC 36 ms
54,056 KB
testcase_04 AC 35 ms
55,308 KB
testcase_05 AC 35 ms
54,116 KB
testcase_06 AC 34 ms
55,056 KB
testcase_07 AC 46 ms
62,732 KB
testcase_08 AC 42 ms
61,500 KB
testcase_09 AC 40 ms
61,280 KB
testcase_10 AC 78 ms
64,820 KB
testcase_11 AC 41 ms
61,756 KB
testcase_12 AC 58 ms
64,516 KB
testcase_13 AC 58 ms
65,240 KB
testcase_14 AC 77 ms
63,960 KB
testcase_15 AC 58 ms
64,368 KB
testcase_16 AC 47 ms
62,536 KB
testcase_17 AC 55 ms
63,944 KB
testcase_18 AC 50 ms
63,656 KB
testcase_19 AC 52 ms
63,544 KB
testcase_20 AC 41 ms
60,592 KB
testcase_21 AC 59 ms
64,104 KB
testcase_22 AC 43 ms
61,636 KB
testcase_23 AC 41 ms
62,248 KB
testcase_24 AC 43 ms
62,740 KB
testcase_25 AC 52 ms
64,232 KB
testcase_26 AC 52 ms
64,532 KB
testcase_27 AC 41 ms
62,112 KB
testcase_28 AC 52 ms
63,816 KB
testcase_29 AC 53 ms
64,992 KB
testcase_30 AC 37 ms
55,244 KB
testcase_31 AC 51 ms
63,464 KB
testcase_32 AC 55 ms
63,940 KB
testcase_33 AC 78 ms
65,164 KB
testcase_34 AC 41 ms
61,148 KB
testcase_35 AC 61 ms
64,424 KB
testcase_36 AC 43 ms
62,336 KB
testcase_37 AC 303 ms
64,932 KB
testcase_38 AC 59 ms
65,224 KB
testcase_39 AC 86 ms
64,412 KB
testcase_40 AC 57 ms
64,296 KB
testcase_41 AC 73 ms
64,144 KB
testcase_42 AC 46 ms
63,868 KB
testcase_43 AC 46 ms
62,280 KB
testcase_44 AC 213 ms
65,064 KB
testcase_45 AC 47 ms
62,392 KB
testcase_46 AC 70 ms
63,800 KB
testcase_47 AC 41 ms
61,224 KB
testcase_48 AC 56 ms
64,632 KB
testcase_49 AC 113 ms
65,284 KB
testcase_50 AC 44 ms
61,328 KB
testcase_51 AC 49 ms
62,528 KB
testcase_52 AC 45 ms
62,536 KB
testcase_53 AC 71 ms
64,600 KB
testcase_54 AC 55 ms
64,608 KB
testcase_55 AC 56 ms
64,288 KB
testcase_56 AC 57 ms
63,784 KB
testcase_57 AC 39 ms
61,748 KB
testcase_58 AC 45 ms
62,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import deque
def is_ham1(a,b):
    if math.log2(a^b).is_integer():
        return True
    else:
        return False

n = int(input())
s,g = map(int,input().split())
ishi = [g]+ list(map(int,input().split()))
q=deque()

q.append([s,0])
S=set()
S.add(s)
while q:
    a = q.popleft()
    S.add(a[0]) 
    for b in ishi:
        if a[0]==b: continue
        if not is_ham1(a[0],b): continue
        if b in S: continue
        if b==g:
            print(a[1])
            exit()
        q.append([b,a[1]+1])

print(-1)
0