結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 104 ms
76,928 KB
testcase_04 AC 59 ms
71,552 KB
testcase_05 AC 156 ms
77,964 KB
testcase_06 AC 111 ms
77,400 KB
testcase_07 AC 79 ms
76,032 KB
testcase_08 AC 137 ms
77,324 KB
testcase_09 AC 172 ms
78,984 KB
testcase_10 AC 208 ms
82,576 KB
testcase_11 AC 159 ms
78,604 KB
testcase_12 AC 151 ms
77,968 KB
testcase_13 AC 101 ms
77,568 KB
testcase_14 AC 205 ms
82,308 KB
testcase_15 AC 239 ms
87,956 KB
testcase_16 AC 230 ms
84,088 KB
testcase_17 AC 272 ms
84,748 KB
testcase_18 AC 91 ms
76,032 KB
testcase_19 AC 244 ms
94,304 KB
testcase_20 AC 57 ms
68,352 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 214 ms
82,216 KB
testcase_23 AC 248 ms
94,984 KB
testcase_24 AC 252 ms
94,732 KB
testcase_25 AC 238 ms
88,280 KB
testcase_26 WA -
testcase_27 AC 103 ms
77,184 KB
testcase_28 AC 222 ms
83,852 KB
testcase_29 AC 163 ms
78,868 KB
testcase_30 AC 47 ms
60,032 KB
testcase_31 AC 46 ms
60,672 KB
testcase_32 AC 158 ms
78,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = [int(i) for i in input().split()][0]
count = 1 
check = set([1])
reach = set()
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