結果

問題 No.3 ビットすごろく
ユーザー setsunasetsuna
提出日時 2020-06-06 00:12:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 770 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-05-10 00:51:03
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 40 ms
11,136 KB
testcase_04 AC 34 ms
11,008 KB
testcase_05 AC 49 ms
11,264 KB
testcase_06 AC 38 ms
11,264 KB
testcase_07 AC 38 ms
11,008 KB
testcase_08 AC 45 ms
11,264 KB
testcase_09 AC 54 ms
11,904 KB
testcase_10 AC 61 ms
11,776 KB
testcase_11 AC 52 ms
11,392 KB
testcase_12 AC 48 ms
11,264 KB
testcase_13 AC 37 ms
11,264 KB
testcase_14 AC 59 ms
11,904 KB
testcase_15 AC 65 ms
11,776 KB
testcase_16 AC 60 ms
11,648 KB
testcase_17 AC 64 ms
11,776 KB
testcase_18 AC 37 ms
11,136 KB
testcase_19 AC 64 ms
11,776 KB
testcase_20 AC 33 ms
11,008 KB
testcase_21 AC 30 ms
11,008 KB
testcase_22 AC 57 ms
11,776 KB
testcase_23 AC 64 ms
11,648 KB
testcase_24 AC 65 ms
11,776 KB
testcase_25 AC 65 ms
11,648 KB
testcase_26 WA -
testcase_27 AC 38 ms
11,264 KB
testcase_28 AC 64 ms
11,648 KB
testcase_29 AC 52 ms
11,904 KB
testcase_30 AC 31 ms
11,008 KB
testcase_31 AC 31 ms
11,008 KB
testcase_32 AC 50 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import copy
import math

N = int(input())
if N == 1:
    print(1)
else:
    ans, already, que = 1, set([1]), deque([1])
    while len(que) > 0:
        nque = deque()
        while len(que) > 0:
            n = que.popleft()
            k, step = n, 0
            while k > 0:
                step += k % 2
                k >>= 1
            if n - step >= 1 and n - step not in already:
                nque.append(n - step)
                already.add(n - step)
            if n + step < N and n + step not in already:
                nque.append(n + step)
                already.add(n + step)
            elif n + step == N:
                print(ans + 1)
                exit()
        que = copy.copy(nque)
        ans += 1
print(-1)
0