結果

問題 No.3 ビットすごろく
ユーザー bellangeldindonbellangeldindon
提出日時 2019-04-26 10:05:34
言語 Python2
(2.7.18)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 7,196 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 09:19:07
合計ジャッジ時間 1,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 18 ms
6,940 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 26 ms
6,944 KB
testcase_06 AC 19 ms
6,944 KB
testcase_07 AC 15 ms
6,944 KB
testcase_08 AC 23 ms
6,940 KB
testcase_09 AC 32 ms
6,940 KB
testcase_10 AC 36 ms
6,940 KB
testcase_11 AC 30 ms
6,940 KB
testcase_12 AC 27 ms
6,944 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 36 ms
6,940 KB
testcase_15 AC 41 ms
6,944 KB
testcase_16 AC 39 ms
6,940 KB
testcase_17 AC 42 ms
6,940 KB
testcase_18 AC 17 ms
6,944 KB
testcase_19 AC 42 ms
6,940 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 11 ms
6,940 KB
testcase_22 AC 36 ms
6,944 KB
testcase_23 AC 42 ms
6,944 KB
testcase_24 AC 41 ms
6,940 KB
testcase_25 AC 42 ms
6,940 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 18 ms
6,940 KB
testcase_28 AC 38 ms
6,944 KB
testcase_29 AC 30 ms
6,944 KB
testcase_30 AC 11 ms
6,940 KB
testcase_31 AC 11 ms
6,940 KB
testcase_32 AC 29 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def countbit(n):
	m = n
	cnt = 0
	while m != 0:
		if m % 2 == 1: cnt += 1
		m = m / 2
	return cnt
N = int(raw_input())
passed = [False]
board = [-1]
for i in range(0, N):
	passed.append(True)
	board.append(-1)
queue = [[1, 1, passed]]
while queue != []:
	now = queue.pop(0)
	newpassed = now[2]
	if now[2][now[0]]:
		newpassed[now[0]] = False
		move = countbit(now[0])
		if board[now[0]] == -1 or board[now[0]] > now[1]:
			board[now[0]] = now[1]
		if now[0] + move <= N:
			queue.append([now[0]+move, now[1]+1, newpassed])
		if now[0] - move >= 1:
			queue.append([now[0]-move, now[1]+1, newpassed])
print board[N]
0