結果

問題 No.3 ビットすごろく
ユーザー H20H20
提出日時 2020-12-01 22:49:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 74,292 KB
最終ジャッジ日時 2024-07-01 10:01:09
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 59 ms
66,688 KB
testcase_04 AC 50 ms
61,696 KB
testcase_05 AC 61 ms
69,632 KB
testcase_06 AC 60 ms
66,816 KB
testcase_07 AC 61 ms
66,048 KB
testcase_08 AC 62 ms
68,352 KB
testcase_09 AC 63 ms
70,656 KB
testcase_10 AC 66 ms
71,936 KB
testcase_11 AC 63 ms
70,272 KB
testcase_12 AC 63 ms
69,376 KB
testcase_13 AC 59 ms
66,432 KB
testcase_14 AC 66 ms
71,808 KB
testcase_15 AC 68 ms
74,240 KB
testcase_16 AC 67 ms
73,728 KB
testcase_17 AC 69 ms
74,240 KB
testcase_18 AC 59 ms
66,176 KB
testcase_19 AC 68 ms
74,240 KB
testcase_20 AC 45 ms
54,272 KB
testcase_21 AC 43 ms
53,632 KB
testcase_22 AC 65 ms
71,808 KB
testcase_23 AC 68 ms
74,292 KB
testcase_24 AC 68 ms
74,112 KB
testcase_25 AC 67 ms
74,112 KB
testcase_26 AC 42 ms
53,632 KB
testcase_27 AC 60 ms
66,560 KB
testcase_28 AC 64 ms
72,832 KB
testcase_29 AC 63 ms
70,528 KB
testcase_30 AC 43 ms
54,016 KB
testcase_31 AC 43 ms
53,888 KB
testcase_32 AC 61 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
L=[]
[L.append([])for _ in range(N+1)]
PASS = [0]*(N+1)

for i in range(N+1):
    cnt = format(i, 'b').count('1')
    if i-cnt >=1:
        L[i].append(i-cnt)
    if i+cnt <=N:
        L[i].append(i+cnt)

q = deque()
qcnt = deque()
q.append(1)
qcnt.append(1)
while len(q) !=0:
    temp = q.popleft()
    cnt = qcnt.popleft()
    if temp ==N:
        print(cnt)
        exit()
    if PASS[temp]==0:
        PASS[temp]=1
        for a in L[temp]:
            q.append(a)
            qcnt.append(cnt+1)
print(-1)
0