結果

問題 No.3 ビットすごろく
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-10-12 21:40:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 72,832 KB
最終ジャッジ日時 2024-09-17 09:01:57
合計ジャッジ時間 3,100 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,504 KB
testcase_01 AC 36 ms
53,632 KB
testcase_02 AC 34 ms
53,248 KB
testcase_03 AC 50 ms
66,688 KB
testcase_04 AC 40 ms
60,416 KB
testcase_05 AC 52 ms
69,120 KB
testcase_06 AC 52 ms
67,328 KB
testcase_07 AC 50 ms
65,536 KB
testcase_08 AC 53 ms
68,352 KB
testcase_09 AC 59 ms
70,272 KB
testcase_10 AC 56 ms
71,040 KB
testcase_11 AC 56 ms
69,632 KB
testcase_12 AC 54 ms
68,736 KB
testcase_13 AC 49 ms
66,048 KB
testcase_14 AC 58 ms
71,168 KB
testcase_15 AC 60 ms
72,320 KB
testcase_16 AC 60 ms
71,936 KB
testcase_17 AC 59 ms
72,320 KB
testcase_18 AC 54 ms
65,920 KB
testcase_19 AC 59 ms
72,832 KB
testcase_20 AC 42 ms
54,656 KB
testcase_21 AC 39 ms
53,888 KB
testcase_22 AC 58 ms
71,296 KB
testcase_23 AC 60 ms
72,832 KB
testcase_24 AC 60 ms
72,448 KB
testcase_25 AC 55 ms
72,576 KB
testcase_26 AC 37 ms
53,760 KB
testcase_27 AC 51 ms
66,688 KB
testcase_28 AC 55 ms
71,808 KB
testcase_29 AC 54 ms
70,016 KB
testcase_30 AC 38 ms
53,760 KB
testcase_31 AC 37 ms
54,184 KB
testcase_32 AC 54 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = [[] for _ in range(n)]
for i in range(n):
    bl = bin((i+1)).count("1")
    a = (i+1) + bl
    b = (i+1) - bl
    if a <= n:
        l[i].append(a-1)
    if b >= 1:
        l[i].append(b-1)
from collections import deque
q = deque([[0,1]])
vis = [-1] * n
vis[0] = 1
while q:
    node,cnt = q.popleft()
#     print(q,node,cnt)
    for nd in l[node]:
        if vis[nd] == -1:
            vis[nd] = cnt + 1
            q.append([nd,cnt+1])
print(vis[-1])
0