結果

問題 No.3 ビットすごろく
ユーザー ytftytft
提出日時 2022-11-01 00:11:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 424 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-07-08 11:36:12
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
66,816 KB
testcase_01 AC 61 ms
66,944 KB
testcase_02 AC 67 ms
66,688 KB
testcase_03 AC 116 ms
78,720 KB
testcase_04 AC 88 ms
78,592 KB
testcase_05 AC 102 ms
78,720 KB
testcase_06 AC 102 ms
78,848 KB
testcase_07 AC 93 ms
78,592 KB
testcase_08 AC 98 ms
78,848 KB
testcase_09 AC 103 ms
78,720 KB
testcase_10 AC 103 ms
78,848 KB
testcase_11 AC 101 ms
78,848 KB
testcase_12 AC 100 ms
78,848 KB
testcase_13 AC 98 ms
78,848 KB
testcase_14 AC 104 ms
78,848 KB
testcase_15 AC 104 ms
78,976 KB
testcase_16 AC 103 ms
78,848 KB
testcase_17 AC 105 ms
79,104 KB
testcase_18 AC 97 ms
78,720 KB
testcase_19 AC 107 ms
78,848 KB
testcase_20 AC 69 ms
69,376 KB
testcase_21 AC 62 ms
66,560 KB
testcase_22 AC 104 ms
78,848 KB
testcase_23 AC 107 ms
78,720 KB
testcase_24 AC 112 ms
79,232 KB
testcase_25 AC 106 ms
79,104 KB
testcase_26 AC 63 ms
66,688 KB
testcase_27 AC 98 ms
78,592 KB
testcase_28 AC 108 ms
78,976 KB
testcase_29 AC 103 ms
78,720 KB
testcase_30 AC 64 ms
67,200 KB
testcase_31 AC 65 ms
67,584 KB
testcase_32 AC 102 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,queue
input=lambda:sys.stdin.readline().rstrip()
def count(N):
	return bin(N).count('1')
def con(a):
	return [a+count(a+1),a-count(a+1)]
N=int(input())
dist=[float('inf') for i in range(N)]
dist[0]=1
q=queue.SimpleQueue()
q.put(0)
while not q.empty():
	temp=q.get()
	for i in con(temp):
		if 0<=i<N and dist[i]>dist[temp]+1:
			dist[i]=dist[temp]+1
			q.put(i)
print(dist[N-1] if dist[N-1]!=float('inf') else -1)
0