結果

問題 No.3 ビットすごろく
ユーザー basscl_sugi
提出日時 2017-04-14 18:01:54
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-18 15:18:08
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14 WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000)
n=int(input())
data={}
for i in range(1,n+1):
    data[i]=-1
data[1]=1

def check(index,count=2):
    global data
    move=sum(map(int,bin(index)[2:]))
    if index-move>0:
        if data[index-move]==-1:
            data[index-move]=count
            check(index-move,count+1)
    if index+move<=n:
        if data[index+move]==-1:
            data[index+move]=count
            check(index+move,count+1)
check(1)
print(data[n])
0