結果

問題 No.3 ビットすごろく
ユーザー AEnAEn
提出日時 2022-05-13 16:49:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 706 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 70,400 KB
最終ジャッジ日時 2024-07-21 15:59:10
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 68 ms
64,000 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 60 ms
67,328 KB
testcase_06 AC 53 ms
64,000 KB
testcase_07 AC 52 ms
62,848 KB
testcase_08 AC 59 ms
67,200 KB
testcase_09 AC 61 ms
68,096 KB
testcase_10 AC 62 ms
68,864 KB
testcase_11 AC 60 ms
67,968 KB
testcase_12 AC 61 ms
67,456 KB
testcase_13 AC 53 ms
63,360 KB
testcase_14 AC 60 ms
68,992 KB
testcase_15 AC 64 ms
70,272 KB
testcase_16 AC 63 ms
69,888 KB
testcase_17 AC 62 ms
70,144 KB
testcase_18 AC 52 ms
63,104 KB
testcase_19 AC 63 ms
70,400 KB
testcase_20 AC 44 ms
53,888 KB
testcase_21 AC 42 ms
53,248 KB
testcase_22 AC 60 ms
69,248 KB
testcase_23 AC 62 ms
70,144 KB
testcase_24 AC 63 ms
70,144 KB
testcase_25 AC 63 ms
70,400 KB
testcase_26 AC 42 ms
53,504 KB
testcase_27 AC 53 ms
63,488 KB
testcase_28 AC 63 ms
70,104 KB
testcase_29 AC 60 ms
68,096 KB
testcase_30 AC 42 ms
53,504 KB
testcase_31 AC 42 ms
54,016 KB
testcase_32 AC 60 ms
67,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
num = [-1]*N
seen = [False]*N
seen[0] = True
num[0] = 1
d = deque()
d.append(1)
while d:
    n = d.popleft()
    cnt = bin(n).count('1')
    a, b = n+cnt-1, n-cnt-1
    if 0<=a<N and seen[a] == False:
        seen[a] = True
        num[a] = num[n-1]+1
        d.append(a+1)
    if 0<=b<N and seen[b] == False:
        seen[b] = True
        num[b] = num[n-1]+1
        d.append(b+1)
print(num[-1])
0