結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,944 KB
testcase_01 AC 40 ms
52,432 KB
testcase_02 AC 37 ms
52,408 KB
testcase_03 AC 113 ms
77,368 KB
testcase_04 AC 58 ms
73,156 KB
testcase_05 AC 176 ms
78,352 KB
testcase_06 AC 118 ms
77,588 KB
testcase_07 AC 83 ms
76,204 KB
testcase_08 AC 157 ms
77,964 KB
testcase_09 AC 197 ms
79,120 KB
testcase_10 AC 246 ms
82,188 KB
testcase_11 AC 190 ms
78,560 KB
testcase_12 AC 170 ms
77,968 KB
testcase_13 AC 109 ms
77,044 KB
testcase_14 AC 245 ms
82,576 KB
testcase_15 AC 281 ms
87,952 KB
testcase_16 AC 269 ms
83,216 KB
testcase_17 AC 278 ms
84,500 KB
testcase_18 AC 84 ms
75,884 KB
testcase_19 AC 293 ms
94,100 KB
testcase_20 AC 57 ms
70,324 KB
testcase_21 AC 39 ms
52,296 KB
testcase_22 AC 246 ms
82,440 KB
testcase_23 AC 292 ms
94,224 KB
testcase_24 AC 281 ms
94,096 KB
testcase_25 AC 275 ms
87,440 KB
testcase_26 WA -
testcase_27 AC 112 ms
77,176 KB
testcase_28 AC 270 ms
83,216 KB
testcase_29 AC 190 ms
78,732 KB
testcase_30 AC 44 ms
60,556 KB
testcase_31 AC 46 ms
61,812 KB
testcase_32 AC 185 ms
78,100 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 = reach | check | left | right, (left | right) - reach
	count += 1
print(count if N in reach else -1)	
0