結果

問題 No.3 ビットすごろく
ユーザー gigurururugigurururu
提出日時 2014-11-04 15:46:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-07-01 07:05:46
合計ジャッジ時間 2,978 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,040 KB
testcase_01 AC 15 ms
7,040 KB
testcase_02 AC 14 ms
7,040 KB
testcase_03 AC 32 ms
7,040 KB
testcase_04 AC 20 ms
7,040 KB
testcase_05 AC 54 ms
7,040 KB
testcase_06 AC 34 ms
7,040 KB
testcase_07 AC 26 ms
7,040 KB
testcase_08 AC 47 ms
7,040 KB
testcase_09 AC 66 ms
7,040 KB
testcase_10 AC 76 ms
7,168 KB
testcase_11 AC 61 ms
7,040 KB
testcase_12 AC 53 ms
7,040 KB
testcase_13 AC 30 ms
7,040 KB
testcase_14 AC 74 ms
7,040 KB
testcase_15 AC 89 ms
7,040 KB
testcase_16 AC 84 ms
7,040 KB
testcase_17 AC 86 ms
7,040 KB
testcase_18 AC 27 ms
7,168 KB
testcase_19 AC 88 ms
7,040 KB
testcase_20 AC 18 ms
7,040 KB
testcase_21 AC 15 ms
7,040 KB
testcase_22 AC 75 ms
7,040 KB
testcase_23 AC 90 ms
7,040 KB
testcase_24 AC 90 ms
7,040 KB
testcase_25 AC 87 ms
7,040 KB
testcase_26 AC 14 ms
7,040 KB
testcase_27 AC 31 ms
7,040 KB
testcase_28 AC 81 ms
7,168 KB
testcase_29 AC 62 ms
7,040 KB
testcase_30 AC 15 ms
6,940 KB
testcase_31 AC 16 ms
7,040 KB
testcase_32 AC 58 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from Queue import Queue
n=input()
q=Queue()
q.put((1,1))
h=[False]*(n+1)
while not q.empty():
    a,b=q.get()
    if h[a]: continue
    h[a]=True
    if a==n:
        print b
        exit()
    bit=bin(a).count("1")
    if a+bit<=n: q.put((a+bit,b+1))
    if a-bit>0: q.put((a-bit,b+1))
print -1
0