結果

問題 No.3 ビットすごろく
ユーザー ronpooronpoo
提出日時 2023-08-22 16:11:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 84,296 KB
最終ジャッジ日時 2024-12-17 16:08:32
合計ジャッジ時間 5,489 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,008 KB
testcase_01 AC 38 ms
52,592 KB
testcase_02 AC 37 ms
52,504 KB
testcase_03 AC 92 ms
78,000 KB
testcase_04 AC 56 ms
68,304 KB
testcase_05 AC 127 ms
79,824 KB
testcase_06 AC 96 ms
77,292 KB
testcase_07 AC 80 ms
76,376 KB
testcase_08 AC 121 ms
78,448 KB
testcase_09 AC 148 ms
80,280 KB
testcase_10 AC 196 ms
81,704 KB
testcase_11 AC 146 ms
80,200 KB
testcase_12 AC 135 ms
79,812 KB
testcase_13 AC 92 ms
76,916 KB
testcase_14 AC 187 ms
82,548 KB
testcase_15 AC 202 ms
83,756 KB
testcase_16 AC 185 ms
80,352 KB
testcase_17 AC 209 ms
83,036 KB
testcase_18 AC 84 ms
76,868 KB
testcase_19 AC 207 ms
83,384 KB
testcase_20 AC 51 ms
66,280 KB
testcase_21 AC 37 ms
53,652 KB
testcase_22 AC 132 ms
79,140 KB
testcase_23 AC 185 ms
80,700 KB
testcase_24 AC 211 ms
82,840 KB
testcase_25 AC 204 ms
84,296 KB
testcase_26 AC 36 ms
52,492 KB
testcase_27 AC 97 ms
76,952 KB
testcase_28 AC 105 ms
77,992 KB
testcase_29 AC 164 ms
81,508 KB
testcase_30 AC 37 ms
52,940 KB
testcase_31 AC 37 ms
53,932 KB
testcase_32 AC 168 ms
81,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

N = int(input())

dist = [float('inf')] * (N+1)
dist[1] = 1

def dfs(now):
    v = str(format(now, 'b')).count('1')
    for x in [1, -1]:
        nxt = now + v*x
        if 1 < nxt <= N:
            if dist[nxt] > dist[now] + 1:
                dist[nxt] = dist[now] + 1
                dfs(nxt)        
    
dfs(1)

if dist[N] < float('inf'):
    ans = dist[N]
else:
    ans = -1
print(ans)
0