結果

問題 No.3 ビットすごろく
ユーザー MtBotOMtBotO
提出日時 2017-09-18 18:49:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 801 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 69,708 KB
最終ジャッジ日時 2024-04-25 15:31:03
合計ジャッジ時間 6,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())

    # 探索位置情報格納用
    p = [1]

    # 既に訪れた位置格納
    visited = [1]

    # 移動回数
    cnt = 1

    while True:
        cnt += 1
        # 現在位置を取得
        point = p.pop()

        # 移動距離
        v = bin(point).count("1")
        # 前方移動位置
        f_point = point + v

        # 後方移動位置
        b_point = point - v

        # 目的位置に移動したかチェック
        if f_point == N or b_point == N :
            print(cnt)
            exit()

        # 位置を記憶
        if f_point < N and  not(f_point in visited):
            p.append(f_point)
        if b_point > 0 and  not(b_point in visited):
            p.append(b_point)


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