結果

問題 No.3 ビットすごろく
ユーザー Miyu OsanaiMiyu Osanai
提出日時 2019-06-25 11:07:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 770 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-01 09:22:56
合計ジャッジ時間 2,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 36 ms
11,008 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 43 ms
11,392 KB
testcase_06 AC 36 ms
11,008 KB
testcase_07 AC 34 ms
11,008 KB
testcase_08 AC 40 ms
11,264 KB
testcase_09 AC 47 ms
11,648 KB
testcase_10 AC 50 ms
11,904 KB
testcase_11 AC 45 ms
11,520 KB
testcase_12 AC 42 ms
11,520 KB
testcase_13 AC 35 ms
11,008 KB
testcase_14 AC 50 ms
11,904 KB
testcase_15 AC 54 ms
12,160 KB
testcase_16 AC 52 ms
12,032 KB
testcase_17 AC 53 ms
12,032 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 55 ms
12,032 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 49 ms
11,904 KB
testcase_23 AC 55 ms
12,160 KB
testcase_24 AC 55 ms
12,032 KB
testcase_25 AC 55 ms
12,032 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 35 ms
11,008 KB
testcase_28 AC 51 ms
12,032 KB
testcase_29 AC 44 ms
11,648 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 44 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def main():
    N = int(input())
    queue = deque()
    L = [(False, i, 0) for i in range(N)]
    L[0] = (True, 1, 1)
    queue.append(L[0])
    while len(queue) > 0:
        now = queue.popleft()
        if now[1] == N:
            print(now[2])
            exit()
        d = count(now[1])
        if (now[1] - d) > 0 and not L[now[1]-d-1][0]:
            L[now[1]-d-1] = (True, now[1] - d, now[2]+1)
            queue.append(L[now[1]-d-1])
        if (now[1] + d) <= N and not L[now[1]+d-1][0]:
            L[now[1]+d-1] = (True, now[1] + d, now[2]+1)
            queue.append(L[now[1]+d-1])
    print(-1)
        

def count(i):
    return len(list(filter(lambda x: x == '1', str(bin(i))[2:])))


if __name__ == '__main__':
    main()
0