結果

問題 No.3 ビットすごろく
ユーザー Koharu Aoki 🌏🦊🇯🇵 青木小春Koharu Aoki 🌏🦊🇯🇵 青木小春
提出日時 2024-03-18 01:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 95,084 KB
最終ジャッジ日時 2024-09-30 04:49:23
合計ジャッジ時間 6,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,424 KB
testcase_01 AC 39 ms
52,996 KB
testcase_02 AC 40 ms
53,256 KB
testcase_03 AC 110 ms
77,172 KB
testcase_04 AC 60 ms
72,332 KB
testcase_05 AC 161 ms
78,316 KB
testcase_06 AC 120 ms
77,164 KB
testcase_07 AC 78 ms
76,084 KB
testcase_08 AC 145 ms
78,260 KB
testcase_09 AC 166 ms
79,472 KB
testcase_10 AC 218 ms
82,668 KB
testcase_11 AC 160 ms
79,336 KB
testcase_12 AC 155 ms
78,444 KB
testcase_13 AC 105 ms
77,432 KB
testcase_14 AC 207 ms
82,284 KB
testcase_15 AC 237 ms
88,300 KB
testcase_16 AC 222 ms
84,200 KB
testcase_17 AC 237 ms
84,864 KB
testcase_18 AC 79 ms
76,152 KB
testcase_19 AC 242 ms
94,192 KB
testcase_20 AC 50 ms
67,756 KB
testcase_21 AC 37 ms
53,320 KB
testcase_22 AC 203 ms
82,412 KB
testcase_23 AC 248 ms
95,084 KB
testcase_24 AC 237 ms
94,836 KB
testcase_25 AC 232 ms
88,300 KB
testcase_26 AC 37 ms
52,216 KB
testcase_27 AC 103 ms
77,388 KB
testcase_28 AC 223 ms
83,920 KB
testcase_29 AC 165 ms
79,464 KB
testcase_30 AC 44 ms
59,684 KB
testcase_31 AC 48 ms
62,840 KB
testcase_32 AC 167 ms
78,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = [int(i) for i in input().split()][0]
count = 1 
check = set([1])
reach = set([1])
bitcount = lambda x : sum(int(i) for i in bin(x)[2:])
while N not in reach and len(check) > 0:
	left = set(i + bitcount(i) for i in check if i + bitcount(i) <= N)
	right = set(i - bitcount(i) for i in check if i - bitcount(i) > 0)
	reach, check = reach | check | left | right, (left | right) - reach
	count += 1
print(count if N in reach else -1)	
0