結果

問題 No.3 ビットすごろく
ユーザー MaboyMaboy
提出日時 2017-04-17 18:32:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,691 ms / 5,000 ms
コード長 453 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-01 08:42:16
合計ジャッジ時間 46,464 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 240 ms
10,624 KB
testcase_04 AC 48 ms
10,624 KB
testcase_05 AC 1,041 ms
10,880 KB
testcase_06 AC 284 ms
10,624 KB
testcase_07 AC 112 ms
10,880 KB
testcase_08 AC 664 ms
10,880 KB
testcase_09 AC 1,751 ms
10,880 KB
testcase_10 AC 2,570 ms
10,880 KB
testcase_11 AC 1,459 ms
10,752 KB
testcase_12 AC 982 ms
10,752 KB
testcase_13 AC 174 ms
10,752 KB
testcase_14 AC 2,325 ms
10,880 KB
testcase_15 AC 3,589 ms
10,880 KB
testcase_16 AC 3,086 ms
11,008 KB
testcase_17 AC 3,477 ms
11,136 KB
testcase_18 AC 135 ms
10,624 KB
testcase_19 AC 3,664 ms
11,008 KB
testcase_20 AC 39 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 2,381 ms
10,880 KB
testcase_23 AC 3,690 ms
10,880 KB
testcase_24 AC 3,691 ms
11,008 KB
testcase_25 AC 3,589 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 202 ms
10,624 KB
testcase_28 AC 2,965 ms
10,880 KB
testcase_29 AC 1,512 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 1,280 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def NX(a):
  global N,K
  K[a]=a
  r=[]
  b=bin(a).count("1")
  if 0 < a-b and not a-b in K:r.append(a-b)
  if N >= a+b and not a+b in K:r.append(a+b)
  return(r)

N=int(input())
G=-1 if N!=1 else 1
buf=deque()
buf.append([1,1])
if N==1:
  buf.clear()
K=[0]*(N+1)

while len(buf):
  c,n=buf.popleft()
  if n in K:continue
  for i in NX(n):
    if i==N:
      buf.clear()
      G=c+1
    buf.append([c+1,i])
    
print(G)

0