結果

問題 No.3 ビットすごろく
ユーザー 9453435994534359
提出日時 2020-11-02 06:55:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 955 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-01 09:59:17
合計ジャッジ時間 2,860 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,904 KB
testcase_01 AC 44 ms
11,776 KB
testcase_02 AC 43 ms
11,776 KB
testcase_03 AC 47 ms
12,032 KB
testcase_04 AC 42 ms
11,648 KB
testcase_05 AC 55 ms
12,032 KB
testcase_06 AC 47 ms
12,032 KB
testcase_07 AC 44 ms
11,904 KB
testcase_08 AC 51 ms
11,904 KB
testcase_09 AC 59 ms
12,544 KB
testcase_10 AC 61 ms
12,416 KB
testcase_11 AC 56 ms
12,160 KB
testcase_12 AC 54 ms
11,904 KB
testcase_13 AC 45 ms
12,032 KB
testcase_14 AC 62 ms
12,672 KB
testcase_15 AC 66 ms
12,544 KB
testcase_16 AC 64 ms
12,544 KB
testcase_17 AC 66 ms
12,544 KB
testcase_18 AC 44 ms
11,904 KB
testcase_19 AC 67 ms
12,544 KB
testcase_20 AC 41 ms
11,648 KB
testcase_21 AC 41 ms
11,648 KB
testcase_22 AC 62 ms
12,672 KB
testcase_23 AC 68 ms
12,544 KB
testcase_24 AC 68 ms
12,544 KB
testcase_25 AC 67 ms
12,544 KB
testcase_26 AC 40 ms
11,904 KB
testcase_27 AC 46 ms
11,904 KB
testcase_28 AC 64 ms
12,544 KB
testcase_29 AC 58 ms
12,416 KB
testcase_30 AC 41 ms
11,776 KB
testcase_31 AC 41 ms
11,648 KB
testcase_32 AC 57 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import heapq
import itertools
import sys
import math
import random
import time
from collections import Counter, deque, defaultdict
from functools import reduce
from operator import xor
from typing import List

mod = 10 ** 9 + 7
sys.setrecursionlimit(10 ** 9)


def lmi():
    return list(map(int, input().split()))


def main():
    N = int(input())
    queue = deque()
    queue.append((1, 1))
    visited = set()
    while queue:
        cur, depth = queue.popleft()
        if cur < 0 or N + 1 <= cur:
            continue
        if cur in visited:
            continue
        if cur == N:
            print(depth)
            return

        visited.add(cur)
        queue.append((cur + f(cur), depth + 1))
        queue.append((cur - f(cur), depth + 1))
    
    print(-1)


def f(num):
    ret = 0
    while num:
        if num % 2 == 1:
            ret += 1
        num >>= 1
    return ret



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