結果

問題 No.3 ビットすごろく
ユーザー setsunasetsuna
提出日時 2020-06-05 23:56:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 691 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,852 KB
最終ジャッジ日時 2024-12-17 19:19:46
合計ジャッジ時間 112,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,956 KB
testcase_01 AC 29 ms
17,828 KB
testcase_02 AC 29 ms
23,932 KB
testcase_03 AC 787 ms
24,188 KB
testcase_04 AC 136 ms
23,932 KB
testcase_05 TLE -
testcase_06 AC 918 ms
24,056 KB
testcase_07 AC 364 ms
23,932 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 618 ms
24,316 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 434 ms
24,188 KB
testcase_19 TLE -
testcase_20 AC 84 ms
10,880 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 AC 725 ms
11,264 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 29 ms
11,136 KB
testcase_31 AC 31 ms
11,008 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import copy
import math

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