結果

問題 No.3 ビットすごろく
ユーザー gahougahou
提出日時 2016-11-01 17:21:53
言語 Python2
(2.7.18)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-01 08:09:03
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,040 KB
testcase_01 AC 14 ms
7,040 KB
testcase_02 AC 15 ms
6,940 KB
testcase_03 AC 26 ms
7,040 KB
testcase_04 AC 18 ms
7,040 KB
testcase_05 AC 44 ms
7,168 KB
testcase_06 AC 28 ms
7,040 KB
testcase_07 AC 23 ms
6,940 KB
testcase_08 AC 36 ms
7,040 KB
testcase_09 AC 50 ms
7,040 KB
testcase_10 AC 58 ms
7,168 KB
testcase_11 AC 48 ms
7,040 KB
testcase_12 AC 41 ms
7,168 KB
testcase_13 AC 25 ms
7,040 KB
testcase_14 AC 56 ms
7,168 KB
testcase_15 AC 67 ms
7,296 KB
testcase_16 AC 62 ms
7,296 KB
testcase_17 AC 66 ms
7,296 KB
testcase_18 AC 23 ms
6,944 KB
testcase_19 AC 67 ms
7,296 KB
testcase_20 AC 17 ms
7,040 KB
testcase_21 AC 14 ms
7,040 KB
testcase_22 AC 56 ms
7,040 KB
testcase_23 AC 68 ms
7,168 KB
testcase_24 AC 67 ms
7,296 KB
testcase_25 AC 65 ms
7,168 KB
testcase_26 AC 14 ms
6,944 KB
testcase_27 AC 26 ms
7,040 KB
testcase_28 AC 61 ms
7,296 KB
testcase_29 AC 47 ms
7,040 KB
testcase_30 AC 15 ms
7,040 KB
testcase_31 AC 15 ms
7,040 KB
testcase_32 AC 45 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Queue

def countBit(n):
  s=str(bin(n))
  count=0
  for i in xrange(len(s)):
    if s[i]=="1": count+=1
  return count

N=int(raw_input())
lst=[10**9]*(N+1)
lst[1]=1
q=Queue.Queue()
q.put(1)
while(not q.empty()):
  a=q.get()
  c=countBit(a)
  if a-c>0 and lst[a-c] > lst[a]+1:
    lst[a-c] = lst[a]+1
    q.put(a-c)
  if a+c<=N and lst[a+c] > lst[a]+1:
    lst[a+c] = lst[a]+1
    q.put(a+c)
if lst[N]==10**9: print -1
else: print lst[N]
0