結果

問題 No.3 ビットすごろく
ユーザー flippergoflippergo
提出日時 2020-12-21 18:37:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-07-01 10:01:24
合計ジャッジ時間 3,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,248 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 47 ms
52,864 KB
testcase_03 AC 63 ms
64,384 KB
testcase_04 AC 51 ms
54,272 KB
testcase_05 AC 69 ms
67,968 KB
testcase_06 AC 62 ms
64,640 KB
testcase_07 AC 60 ms
63,488 KB
testcase_08 AC 68 ms
67,584 KB
testcase_09 AC 73 ms
68,992 KB
testcase_10 AC 73 ms
70,144 KB
testcase_11 AC 71 ms
68,352 KB
testcase_12 AC 70 ms
67,712 KB
testcase_13 AC 62 ms
64,000 KB
testcase_14 AC 75 ms
69,888 KB
testcase_15 AC 76 ms
70,656 KB
testcase_16 AC 74 ms
70,528 KB
testcase_17 AC 75 ms
70,656 KB
testcase_18 AC 61 ms
63,744 KB
testcase_19 AC 74 ms
70,912 KB
testcase_20 AC 48 ms
54,016 KB
testcase_21 AC 47 ms
53,248 KB
testcase_22 AC 74 ms
69,760 KB
testcase_23 AC 76 ms
71,040 KB
testcase_24 AC 75 ms
71,168 KB
testcase_25 AC 76 ms
70,784 KB
testcase_26 AC 46 ms
53,248 KB
testcase_27 AC 62 ms
64,256 KB
testcase_28 AC 75 ms
70,016 KB
testcase_29 AC 71 ms
68,736 KB
testcase_30 AC 47 ms
53,248 KB
testcase_31 AC 47 ms
53,504 KB
testcase_32 AC 70 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
hist = [0 for _ in range(N+1)]
que = deque([(1,1)])
hist[1]=1
flag = 0
while que:
    x,d = que.popleft()
    if x==N:
        flag = 1
        break
    n = bin(x)[2:].count("1")
    if x-n>=1 and hist[x-n]==0:
        hist[x-n]=1
        que.append((x-n,d+1))
    if x+n<=N and hist[x+n]==0:
        hist[x+n]=1
        que.append((x+n,d+1))
if flag==0:
    print(-1)
else:
    print(d)
0