結果

問題 No.3 ビットすごろく
ユーザー asaka189asaka189
提出日時 2018-01-31 15:01:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 818 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-01 08:53:52
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 36 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 42 ms
10,880 KB
testcase_06 AC 37 ms
10,624 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 40 ms
10,752 KB
testcase_09 AC 46 ms
10,880 KB
testcase_10 AC 48 ms
10,752 KB
testcase_11 AC 44 ms
10,880 KB
testcase_12 AC 41 ms
11,008 KB
testcase_13 AC 34 ms
10,880 KB
testcase_14 AC 46 ms
11,008 KB
testcase_15 AC 51 ms
11,008 KB
testcase_16 AC 50 ms
11,008 KB
testcase_17 AC 50 ms
11,136 KB
testcase_18 AC 34 ms
10,752 KB
testcase_19 AC 51 ms
11,136 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 48 ms
11,008 KB
testcase_23 AC 51 ms
11,008 KB
testcase_24 AC 51 ms
11,008 KB
testcase_25 AC 51 ms
11,136 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 35 ms
10,752 KB
testcase_28 AC 48 ms
11,008 KB
testcase_29 AC 43 ms
11,008 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 43 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bitget(a):
	s = str(bin(a))
	n = len(s)
	counter = 0
	for i in range(n):
		if s[i] == '1':
			counter += 1
	return counter

n = int(input())
table = [0 for i in range(n+1)]
table[1] = 1
q = [1]
next = 0
while len(q) != 0:
	if len(q) == 1:
		next = bitget(q[0])
		if table[q[0]-next] == 0:
			table[q[0]-next] = table[q[0]]+1
			q.append(q[0]-next)
		if q[0]+next <= n and table[q[0]+next] == 0:
			table[q[0]+next] = table[q[0]]+1
			q.append(q[0]+next)
		q.pop(0)
	else:
		k = len(q)
		for i in range(k):
			next = bitget(q[i])
			if table[q[i]-next] == 0:
				table[q[i]-next] = table[q[i]]+1
				q.append(q[i]-next)
			if q[i]+next <= n and table[q[i]+next] == 0:
				table[q[i]+next] = table[q[i]]+1
				q.append(q[i]+next)
		for i in range(k):
			q.pop(0)
if table[n] != 0:
	print(table[n])
else:
	print('-1')
0