結果

問題 No.3 ビットすごろく
ユーザー nikumakarenikumakare
提出日時 2021-07-16 20:55:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 463 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 70,416 KB
最終ジャッジ日時 2024-07-06 07:41:49
合計ジャッジ時間 2,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,832 KB
testcase_01 AC 34 ms
52,072 KB
testcase_02 AC 35 ms
51,900 KB
testcase_03 AC 47 ms
64,504 KB
testcase_04 AC 38 ms
53,832 KB
testcase_05 AC 54 ms
68,516 KB
testcase_06 AC 46 ms
64,272 KB
testcase_07 AC 43 ms
62,456 KB
testcase_08 AC 49 ms
66,320 KB
testcase_09 AC 51 ms
67,616 KB
testcase_10 AC 52 ms
68,736 KB
testcase_11 AC 49 ms
67,984 KB
testcase_12 AC 49 ms
67,512 KB
testcase_13 AC 43 ms
63,000 KB
testcase_14 AC 50 ms
69,036 KB
testcase_15 AC 53 ms
69,840 KB
testcase_16 AC 52 ms
70,416 KB
testcase_17 AC 51 ms
69,936 KB
testcase_18 AC 43 ms
62,340 KB
testcase_19 AC 51 ms
70,056 KB
testcase_20 AC 35 ms
53,620 KB
testcase_21 AC 33 ms
52,756 KB
testcase_22 AC 50 ms
69,740 KB
testcase_23 AC 53 ms
70,400 KB
testcase_24 AC 52 ms
69,996 KB
testcase_25 AC 53 ms
69,660 KB
testcase_26 AC 34 ms
53,008 KB
testcase_27 AC 44 ms
63,652 KB
testcase_28 AC 52 ms
68,872 KB
testcase_29 AC 52 ms
68,320 KB
testcase_30 AC 34 ms
53,128 KB
testcase_31 AC 33 ms
53,456 KB
testcase_32 AC 51 ms
68,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
INF=10**10

dp=[INF for i in range(n+1)]
dp[1]=1

def popcount(x):
    return bin(x).count("1")

que=[1]
head=0
while head<len(que):
    now=que[head]
    head+=1
    dif=popcount(now)
    if 1<=now+dif<=n and dp[now+dif]==INF:
        dp[now+dif]=dp[now]+1
        que.append(now+dif)
    dif*=-1
    if 1<=now+dif<=n and dp[now+dif]==INF:
        dp[now+dif]=dp[now]+1
        que.append(now+dif)

print(dp[-1]) if dp[-1]<INF else print(-1)
    
0