結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,264 KB
testcase_01 AC 37 ms
53,044 KB
testcase_02 AC 37 ms
52,684 KB
testcase_03 AC 97 ms
78,204 KB
testcase_04 AC 55 ms
68,400 KB
testcase_05 AC 132 ms
79,720 KB
testcase_06 AC 96 ms
77,428 KB
testcase_07 AC 80 ms
76,384 KB
testcase_08 AC 122 ms
78,512 KB
testcase_09 AC 156 ms
80,048 KB
testcase_10 AC 203 ms
81,584 KB
testcase_11 AC 156 ms
80,140 KB
testcase_12 AC 140 ms
79,792 KB
testcase_13 AC 96 ms
77,340 KB
testcase_14 AC 191 ms
82,492 KB
testcase_15 AC 219 ms
84,160 KB
testcase_16 AC 197 ms
80,632 KB
testcase_17 AC 227 ms
83,424 KB
testcase_18 AC 90 ms
77,088 KB
testcase_19 AC 218 ms
83,328 KB
testcase_20 AC 53 ms
66,436 KB
testcase_21 AC 38 ms
53,496 KB
testcase_22 AC 139 ms
79,056 KB
testcase_23 AC 193 ms
80,860 KB
testcase_24 AC 223 ms
82,732 KB
testcase_25 AC 216 ms
84,312 KB
testcase_26 AC 38 ms
54,116 KB
testcase_27 AC 102 ms
77,060 KB
testcase_28 AC 128 ms
77,776 KB
testcase_29 AC 172 ms
81,676 KB
testcase_30 AC 41 ms
52,952 KB
testcase_31 AC 39 ms
53,408 KB
testcase_32 AC 173 ms
81,924 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