結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 48 ms
14,336 KB
testcase_04 AC 32 ms
11,136 KB
testcase_05 AC 103 ms
26,880 KB
testcase_06 AC 50 ms
14,976 KB
testcase_07 AC 38 ms
12,288 KB
testcase_08 AC 74 ms
21,248 KB
testcase_09 AC 138 ms
36,992 KB
testcase_10 AC 173 ms
47,360 KB
testcase_11 AC 122 ms
33,024 KB
testcase_12 AC 96 ms
26,240 KB
testcase_13 AC 41 ms
13,312 KB
testcase_14 AC 169 ms
45,184 KB
testcase_15 AC 230 ms
62,208 KB
testcase_16 AC 204 ms
55,424 KB
testcase_17 AC 224 ms
60,928 KB
testcase_18 AC 39 ms
12,672 KB
testcase_19 AC 233 ms
63,616 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 170 ms
46,080 KB
testcase_23 AC 234 ms
63,488 KB
testcase_24 AC 233 ms
63,488 KB
testcase_25 AC 230 ms
62,336 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 43 ms
13,824 KB
testcase_28 AC 200 ms
53,888 KB
testcase_29 AC 124 ms
33,664 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 115 ms
30,336 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 len(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(bfs())
0