結果

問題 No.3 ビットすごろく
ユーザー ynyn
提出日時 2015-06-11 17:00:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,034 ms / 5,000 ms
コード長 586 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-01 07:24:51
合計ジャッジ時間 14,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 94 ms
11,008 KB
testcase_04 AC 36 ms
10,880 KB
testcase_05 AC 324 ms
11,648 KB
testcase_06 AC 105 ms
11,008 KB
testcase_07 AC 58 ms
10,880 KB
testcase_08 AC 214 ms
11,264 KB
testcase_09 AC 508 ms
11,648 KB
testcase_10 AC 714 ms
11,904 KB
testcase_11 AC 430 ms
11,776 KB
testcase_12 AC 303 ms
11,392 KB
testcase_13 AC 75 ms
11,136 KB
testcase_14 AC 662 ms
11,904 KB
testcase_15 AC 997 ms
12,160 KB
testcase_16 AC 882 ms
12,032 KB
testcase_17 AC 969 ms
12,032 KB
testcase_18 AC 64 ms
11,008 KB
testcase_19 AC 1,027 ms
12,160 KB
testcase_20 AC 34 ms
10,880 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 689 ms
11,904 KB
testcase_23 AC 1,034 ms
12,160 KB
testcase_24 AC 1,025 ms
12,288 KB
testcase_25 AC 996 ms
12,032 KB
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 82 ms
11,136 KB
testcase_28 AC 843 ms
11,904 KB
testcase_29 AC 442 ms
11,776 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 389 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

B = []
counter = []
routes = [[1]]
visited = [1]
turns = -1

for x in range(0, N) :
	B.append(bin(x+1))
	counter.append(B[x].count('1'))

while routes :
	grid = routes.pop(0)
	grid_a = grid[:]
	grid_b = grid[:]

	present = grid[-1]

	s1 = present + counter[present-1]
	s2 = present - counter[present-1]

	if present == N :
		turns = len(grid)

	if s1 not in visited and 0 < s1 <= N :
		visited.append(s1)
		grid_a.append(s1)
		routes.append(grid_a)

	if s2 not in visited and 0 < s2 <= N :
		visited.append(s2)
		grid_b.append(s2)
		routes.append(grid_b)

print(turns)
0