結果

問題 No.3 ビットすごろく
ユーザー keisukekeisuke
提出日時 2022-12-07 19:14:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 73,116 KB
最終ジャッジ日時 2024-10-14 00:01:10
合計ジャッジ時間 2,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,616 KB
testcase_01 AC 43 ms
55,044 KB
testcase_02 AC 38 ms
53,428 KB
testcase_03 AC 88 ms
66,844 KB
testcase_04 AC 47 ms
63,772 KB
testcase_05 AC 54 ms
69,236 KB
testcase_06 AC 53 ms
66,244 KB
testcase_07 AC 50 ms
65,324 KB
testcase_08 AC 54 ms
68,796 KB
testcase_09 AC 55 ms
69,516 KB
testcase_10 AC 57 ms
70,652 KB
testcase_11 AC 54 ms
69,280 KB
testcase_12 AC 57 ms
68,468 KB
testcase_13 AC 56 ms
66,436 KB
testcase_14 AC 58 ms
71,068 KB
testcase_15 AC 64 ms
72,280 KB
testcase_16 AC 59 ms
70,996 KB
testcase_17 AC 58 ms
71,620 KB
testcase_18 AC 49 ms
65,948 KB
testcase_19 AC 57 ms
73,112 KB
testcase_20 AC 40 ms
54,428 KB
testcase_21 AC 37 ms
53,832 KB
testcase_22 AC 55 ms
70,548 KB
testcase_23 AC 58 ms
71,800 KB
testcase_24 AC 59 ms
71,784 KB
testcase_25 AC 56 ms
73,116 KB
testcase_26 AC 38 ms
54,252 KB
testcase_27 AC 53 ms
66,128 KB
testcase_28 AC 59 ms
71,972 KB
testcase_29 AC 54 ms
69,232 KB
testcase_30 AC 39 ms
54,544 KB
testcase_31 AC 39 ms
55,264 KB
testcase_32 AC 56 ms
69,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict

N = int(input())
bin_N = bin(N)[2:]


dist = defaultdict(lambda:-1)
dist[1] = 1
Q = deque()
Q.append(1)

while len(Q) > 0:
    x = Q.popleft()
    bin_x = bin(x)
    bin_count = bin_x.count('1')
    count_list = [x + bin_count,x - bin_count]
    for i in count_list:
        if (1<=i<=N):
            if dist[i]==-1:
                dist[i] = dist[x]+1
                Q.append(i)
        else:
            continue

print(dist[N])
0