結果

問題 No.3 ビットすごろく
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-30 12:38:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 72,064 KB
最終ジャッジ日時 2024-06-26 23:44:21
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 56 ms
66,304 KB
testcase_04 AC 46 ms
60,416 KB
testcase_05 AC 58 ms
68,480 KB
testcase_06 AC 56 ms
66,688 KB
testcase_07 AC 53 ms
64,768 KB
testcase_08 AC 61 ms
67,712 KB
testcase_09 AC 58 ms
69,888 KB
testcase_10 AC 61 ms
70,400 KB
testcase_11 AC 59 ms
69,120 KB
testcase_12 AC 58 ms
68,096 KB
testcase_13 AC 61 ms
65,664 KB
testcase_14 AC 65 ms
69,888 KB
testcase_15 AC 67 ms
71,424 KB
testcase_16 AC 66 ms
71,040 KB
testcase_17 AC 62 ms
71,296 KB
testcase_18 AC 56 ms
65,664 KB
testcase_19 AC 62 ms
71,808 KB
testcase_20 AC 43 ms
54,528 KB
testcase_21 AC 40 ms
54,016 KB
testcase_22 AC 59 ms
70,016 KB
testcase_23 AC 63 ms
71,424 KB
testcase_24 AC 61 ms
72,064 KB
testcase_25 AC 61 ms
71,680 KB
testcase_26 AC 40 ms
53,376 KB
testcase_27 AC 55 ms
65,920 KB
testcase_28 AC 61 ms
70,656 KB
testcase_29 AC 57 ms
69,248 KB
testcase_30 AC 43 ms
53,888 KB
testcase_31 AC 42 ms
53,632 KB
testcase_32 AC 61 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
g=[[] for _ in range(n+1)]
for i in range(1,n):
  m=bin(i).count("1")
  if i+m<=n:g[i].append(i+m)
  if 1<=i-m:g[i].append(i-m)
from collections import deque
seen=[-1]*(n+1)
seen[1]=1
todo=deque([1])
while todo:
  v=todo.popleft()
  for nv in g[v]:
    if seen[nv]==-1:
      seen[nv]=seen[v]+1
      todo.append(nv)
print(seen[n])
0