結果

問題 No.3 ビットすごろく
ユーザー jamadjamad
提出日時 2017-08-13 05:25:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 241 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2024-10-13 07:24:13
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 29 ms
10,880 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 32 ms
12,288 KB
testcase_08 AC 69 ms
21,376 KB
testcase_09 AC 130 ms
36,864 KB
testcase_10 AC 168 ms
47,232 KB
testcase_11 AC 110 ms
33,024 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 198 ms
55,552 KB
testcase_17 AC 213 ms
60,800 KB
testcase_18 AC 36 ms
12,672 KB
testcase_19 AC 219 ms
63,360 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 220 ms
63,360 KB
testcase_25 AC 219 ms
62,464 KB
testcase_26 AC 28 ms
10,624 KB
testcase_27 AC 40 ms
13,696 KB
testcase_28 AC 191 ms
54,016 KB
testcase_29 AC 119 ms
33,536 KB
testcase_30 AC 27 ms
10,624 KB
testcase_31 AC 27 ms
10,496 KB
testcase_32 AC 102 ms
30,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def upd(x,t):
 if 0<x<=N and A[x]==[]:Q.append(x);A[x]=A[t]+[x]
    
def bfs():
 while Q:
  t=Q.pop(0)
  if t==N:return A[N]
  c=bin(t).count('1');upd(t+c,t);upd(t-c,t)
 return -1

N=int(input())
A=[[]]*10001
A[1]=[1]
Q=[1]
print(len(bfs()))
0