結果

問題 No.3 ビットすごろく
ユーザー goto_isyukugoto_isyuku
提出日時 2017-05-26 19:51:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 979 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-01 08:44:22
合計ジャッジ時間 13,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 90 ms
10,752 KB
testcase_04 AC 36 ms
10,880 KB
testcase_05 AC 299 ms
10,880 KB
testcase_06 AC 100 ms
10,880 KB
testcase_07 AC 54 ms
10,752 KB
testcase_08 AC 201 ms
10,880 KB
testcase_09 AC 478 ms
11,008 KB
testcase_10 AC 669 ms
11,136 KB
testcase_11 AC 404 ms
11,136 KB
testcase_12 AC 284 ms
11,008 KB
testcase_13 AC 71 ms
10,880 KB
testcase_14 AC 629 ms
11,136 KB
testcase_15 AC 949 ms
11,008 KB
testcase_16 AC 825 ms
11,136 KB
testcase_17 AC 920 ms
11,008 KB
testcase_18 AC 61 ms
10,880 KB
testcase_19 AC 973 ms
11,136 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 646 ms
11,008 KB
testcase_23 AC 979 ms
11,008 KB
testcase_24 AC 975 ms
11,008 KB
testcase_25 AC 950 ms
11,008 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 78 ms
10,880 KB
testcase_28 AC 794 ms
11,008 KB
testcase_29 AC 418 ms
10,880 KB
testcase_30 AC 30 ms
10,880 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 361 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections as cols

n = int(input())
ans = -1

l = cols.deque()

l.append((1, 1))

s = []

def bitcount(n):
    return bin(n).count("1")

while True:
    try:
        a, b = l.popleft()
    except:
        break
    if a in s or a < 1 or a > n:
        pass
    else:
        if a == n:
            ans = b
            break
        else:
            s.append(a)
    
            d = bitcount(a)
        
            l.append((a - d, b + 1))
            l.append((a + d, b + 1))
    
    

print(ans)
0