結果

問題 No.3 ビットすごろく
ユーザー kekurekekure
提出日時 2019-07-11 08:47:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 584 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-11-07 04:50:04
合計ジャッジ時間 4,412 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 59 ms
65,920 KB
testcase_04 AC 41 ms
52,864 KB
testcase_05 AC 76 ms
71,424 KB
testcase_06 AC 64 ms
66,176 KB
testcase_07 AC 48 ms
61,312 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 77 ms
70,784 KB
testcase_13 AC 61 ms
65,280 KB
testcase_14 AC 119 ms
76,928 KB
testcase_15 AC 134 ms
77,068 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 56 ms
64,768 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 109 ms
76,672 KB
testcase_23 AC 142 ms
77,056 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 39 ms
51,968 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
52,096 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
movable_number = []
move_min = -1
def go(i, move):
    global movable_number
    global move_min
    if i in movable_number:
        return
    if i > n:
        return
    if i == 0:
        return
    if i == n:
        if move_min == -1:
            move_min = move
        else:
            if move < move_min:
                move_min = move
        return
    movable_number.append(i)
    s = bin(i)
    num_one = s[2:].count('1')
    foward = i + num_one
    back = i - num_one
    go(foward, move + 1)
    go(back, move + 1)

i = 1
go(1, 1)
print(move_min)


0