結果

問題 No.3 ビットすごろく
ユーザー ABKZABKZ
提出日時 2021-10-28 18:33:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 404 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 77,628 KB
最終ジャッジ日時 2024-10-07 08:05:24
合計ジャッジ時間 3,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,476 KB
testcase_01 AC 37 ms
53,764 KB
testcase_02 AC 38 ms
53,476 KB
testcase_03 AC 53 ms
67,420 KB
testcase_04 AC 42 ms
59,552 KB
testcase_05 AC 57 ms
71,048 KB
testcase_06 AC 53 ms
67,636 KB
testcase_07 AC 49 ms
64,728 KB
testcase_08 AC 56 ms
71,252 KB
testcase_09 AC 57 ms
73,196 KB
testcase_10 AC 59 ms
74,776 KB
testcase_11 AC 57 ms
72,556 KB
testcase_12 AC 57 ms
71,212 KB
testcase_13 AC 52 ms
65,768 KB
testcase_14 AC 59 ms
74,672 KB
testcase_15 AC 64 ms
77,400 KB
testcase_16 AC 67 ms
77,396 KB
testcase_17 AC 67 ms
77,608 KB
testcase_18 AC 51 ms
65,044 KB
testcase_19 AC 65 ms
77,536 KB
testcase_20 AC 38 ms
53,472 KB
testcase_21 AC 37 ms
53,372 KB
testcase_22 AC 59 ms
74,804 KB
testcase_23 AC 66 ms
77,628 KB
testcase_24 AC 64 ms
77,428 KB
testcase_25 AC 65 ms
77,548 KB
testcase_26 AC 38 ms
52,468 KB
testcase_27 AC 52 ms
65,420 KB
testcase_28 AC 64 ms
77,296 KB
testcase_29 AC 58 ms
72,716 KB
testcase_30 AC 39 ms
52,436 KB
testcase_31 AC 37 ms
53,308 KB
testcase_32 AC 58 ms
71,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

jmp_to = {x: [x-d, x+d] for x,d in [[x, bin(x).count("1")] for x in range(1,N)]}

pos = {1}
passed = set()
cnt = 1
while len(pos) > 0:
    if N in pos:
        break
    passed.update(pos)
    new_pos = set()
    for i in pos:
        if i > 0 and i < N:
            new_pos.update(jmp_to[i])
    new_pos = new_pos - passed
    pos = new_pos
    cnt += 1
else:
    cnt = -1

print(cnt)
0