結果

問題 No.3 ビットすごろく
ユーザー togatogatogatoga
提出日時 2015-08-15 07:29:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 436 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-07-01 07:28:51
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,168 KB
testcase_01 AC 15 ms
7,168 KB
testcase_02 AC 15 ms
7,168 KB
testcase_03 AC 34 ms
7,296 KB
testcase_04 AC 21 ms
7,168 KB
testcase_05 AC 56 ms
7,168 KB
testcase_06 AC 36 ms
7,296 KB
testcase_07 AC 26 ms
7,168 KB
testcase_08 AC 48 ms
7,296 KB
testcase_09 AC 68 ms
7,424 KB
testcase_10 AC 80 ms
7,808 KB
testcase_11 AC 64 ms
7,168 KB
testcase_12 AC 56 ms
7,296 KB
testcase_13 AC 31 ms
7,296 KB
testcase_14 AC 78 ms
7,808 KB
testcase_15 AC 93 ms
7,936 KB
testcase_16 AC 89 ms
7,936 KB
testcase_17 AC 92 ms
7,936 KB
testcase_18 AC 28 ms
7,040 KB
testcase_19 AC 94 ms
7,808 KB
testcase_20 AC 19 ms
7,040 KB
testcase_21 AC 15 ms
7,168 KB
testcase_22 AC 80 ms
7,936 KB
testcase_23 AC 94 ms
7,936 KB
testcase_24 AC 94 ms
7,936 KB
testcase_25 AC 94 ms
7,808 KB
testcase_26 AC 15 ms
7,040 KB
testcase_27 AC 32 ms
7,296 KB
testcase_28 AC 86 ms
7,808 KB
testcase_29 AC 65 ms
7,296 KB
testcase_30 AC 15 ms
7,168 KB
testcase_31 AC 16 ms
7,168 KB
testcase_32 AC 59 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from Queue import Queue
import sys
N = input()
q  = Queue()
q.put([1, 0])
visit = set()
while (q.empty() == False):
    pos = q.get()
    if (pos[0] <= 0 or pos[0] >= N + 1):
        continue
    if (pos[0] == N):
        print pos[1] + 1
        sys.exit(0)
    if (pos[0] in visit):
        continue
    visit.add(pos[0])
    x = bin(pos[0]).count("1")
    q.put([pos[0] + x, pos[1] + 1])
    q.put([pos[0] - x, pos[1] + 1])
print -1
0