結果

問題 No.3 ビットすごろく
ユーザー ぺ鳥ぺ鳥
提出日時 2022-06-13 12:30:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-25 06:09:34
合計ジャッジ時間 2,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 36 ms
11,136 KB
testcase_10 AC 37 ms
11,264 KB
testcase_11 AC 36 ms
10,880 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 37 ms
11,008 KB
testcase_15 AC 39 ms
11,136 KB
testcase_16 AC 37 ms
11,008 KB
testcase_17 AC 38 ms
11,136 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 39 ms
11,136 KB
testcase_20 AC 24 ms
10,624 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 35 ms
11,008 KB
testcase_23 AC 39 ms
11,136 KB
testcase_24 AC 38 ms
11,136 KB
testcase_25 AC 41 ms
11,008 KB
testcase_26 WA -
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 38 ms
11,008 KB
testcase_29 AC 33 ms
10,880 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 25 ms
10,752 KB
testcase_32 AC 34 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())

v = deque([0] * N)
q = deque()
q.append(1)
v[0] = 1


result = False

if N == 1:
    print(0)
else:
    while(q):
        bin_count = bin(int(q[0])).count('1')
        v_next = q[0] + bin_count
        v_back = q[0] - bin_count
        if v_next <= N and v[v_next - 1] == 0:
            v[v_next - 1] = v[q[0] - 1] + 1
            q.append(v_next)
            if v_next == N:
                print(v[N -1])
                result = True
                break
        if 0 < v_back <= N and v[v_back - 1] == 0:
            v[v_back - 1] = v[q[0] - 1] + 1
            q.append(v_back)
        q.popleft()


if result != True:
    print(-1)
    

0