結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,744 KB
testcase_01 AC 33 ms
52,516 KB
testcase_02 AC 33 ms
53,944 KB
testcase_03 AC 101 ms
77,392 KB
testcase_04 AC 55 ms
73,184 KB
testcase_05 AC 143 ms
77,964 KB
testcase_06 AC 102 ms
77,584 KB
testcase_07 AC 73 ms
76,416 KB
testcase_08 AC 131 ms
77,580 KB
testcase_09 AC 158 ms
79,248 KB
testcase_10 AC 200 ms
82,704 KB
testcase_11 AC 154 ms
78,732 KB
testcase_12 AC 141 ms
77,964 KB
testcase_13 AC 94 ms
77,100 KB
testcase_14 AC 199 ms
82,436 KB
testcase_15 AC 223 ms
88,460 KB
testcase_16 AC 219 ms
84,108 KB
testcase_17 AC 224 ms
85,068 KB
testcase_18 AC 74 ms
76,328 KB
testcase_19 AC 238 ms
94,476 KB
testcase_20 AC 51 ms
69,348 KB
testcase_21 AC 33 ms
53,408 KB
testcase_22 AC 204 ms
82,412 KB
testcase_23 AC 234 ms
95,252 KB
testcase_24 AC 233 ms
94,732 KB
testcase_25 AC 225 ms
88,260 KB
testcase_26 AC 34 ms
51,952 KB
testcase_27 AC 97 ms
77,716 KB
testcase_28 AC 213 ms
84,232 KB
testcase_29 AC 152 ms
78,988 KB
testcase_30 AC 42 ms
60,908 KB
testcase_31 AC 42 ms
61,360 KB
testcase_32 AC 147 ms
78,732 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, count = reach | check | left | right, (left | right) - reach, count + 1
print(count if N in reach else -1)	
0