結果

問題 No.3 ビットすごろく
ユーザー howakurohowakuro
提出日時 2019-01-08 21:10:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 541 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,408 KB
最終ジャッジ日時 2024-11-24 00:49:08
合計ジャッジ時間 82,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
29,440 KB
testcase_01 AC 29 ms
17,568 KB
testcase_02 AC 28 ms
29,312 KB
testcase_03 AC 83 ms
29,696 KB
testcase_04 AC 42 ms
29,696 KB
testcase_05 AC 802 ms
28,544 KB
testcase_06 AC 89 ms
29,568 KB
testcase_07 AC 55 ms
29,824 KB
testcase_08 AC 294 ms
30,080 KB
testcase_09 AC 4,983 ms
23,716 KB
testcase_10 TLE -
testcase_11 AC 3,038 ms
22,052 KB
testcase_12 AC 665 ms
11,648 KB
testcase_13 AC 70 ms
10,880 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 60 ms
10,752 KB
testcase_19 TLE -
testcase_20 AC 35 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 77 ms
10,752 KB
testcase_28 TLE -
testcase_29 AC 3,130 ms
15,232 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 1,945 ms
33,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def convert_bit(x):
    return bin(x).count("1")

N = int(input())
q = deque([(1,1)])
reach = [0 for i in range(N)]
empty = deque([])
while q != empty:
    node = q.popleft()
    if node[0] == N:
        print(node[1])
        exit()
    move = convert_bit(node[0])
    for m in [move,-move]:
        next_pos = m + node[0]
        if not 1 <= next_pos <= N:
            continue 
        if reach[next_pos - 1] == 0:
            q.append((next_pos,node[1] + 1))
            reach[node[0] - 1] = 1
print(-1)
  
0