結果

問題 No.3 ビットすごろく
ユーザー トミートミー
提出日時 2024-11-27 15:52:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-11-27 15:52:18
合計ジャッジ時間 3,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,248 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 39 ms
53,376 KB
testcase_03 AC 66 ms
71,296 KB
testcase_04 AC 59 ms
67,456 KB
testcase_05 AC 71 ms
76,032 KB
testcase_06 AC 65 ms
71,936 KB
testcase_07 AC 66 ms
69,760 KB
testcase_08 AC 73 ms
76,032 KB
testcase_09 AC 76 ms
76,288 KB
testcase_10 AC 75 ms
76,416 KB
testcase_11 AC 73 ms
75,904 KB
testcase_12 AC 72 ms
75,904 KB
testcase_13 AC 64 ms
70,860 KB
testcase_14 AC 79 ms
76,032 KB
testcase_15 AC 83 ms
76,800 KB
testcase_16 AC 82 ms
76,032 KB
testcase_17 AC 78 ms
76,512 KB
testcase_18 AC 60 ms
70,144 KB
testcase_19 AC 82 ms
76,288 KB
testcase_20 AC 43 ms
61,760 KB
testcase_21 AC 36 ms
52,992 KB
testcase_22 AC 78 ms
76,288 KB
testcase_23 AC 86 ms
76,416 KB
testcase_24 AC 89 ms
76,288 KB
testcase_25 AC 85 ms
76,288 KB
testcase_26 AC 40 ms
53,632 KB
testcase_27 AC 70 ms
71,168 KB
testcase_28 AC 82 ms
76,160 KB
testcase_29 AC 73 ms
75,904 KB
testcase_30 AC 41 ms
54,400 KB
testcase_31 AC 41 ms
54,016 KB
testcase_32 AC 73 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bitcount(n):
  return bin(n).count("1")

def main():
  n=int(input())
  dq=deque()
  dq.append((1,1))
  seen=set()
  while len(dq)>0:
    x,y=dq.popleft()
    if x==n:
      print(y)
      return
    if x in seen:
      continue
    seen.add(x)
    if x+bitcount(x)<=n:
      dq.append((x+bitcount(x),y+1))
    if x-bitcount(x)>0:
      dq.append((x-bitcount(x),y+1))
  print(-1)
if __name__=="__main__":
  main()
0