結果

問題 No.3 ビットすごろく
ユーザー mitsushinomitsushino
提出日時 2017-12-07 11:43:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,045 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-05-06 19:15:34
合計ジャッジ時間 2,229 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 28 ms
11,136 KB
testcase_04 AC 26 ms
11,008 KB
testcase_05 AC 31 ms
11,776 KB
testcase_06 AC 29 ms
11,136 KB
testcase_07 AC 28 ms
11,136 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 34 ms
11,776 KB
testcase_13 AC 31 ms
11,136 KB
testcase_14 AC 35 ms
12,416 KB
testcase_15 AC 35 ms
12,800 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 28 ms
11,136 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 33 ms
12,416 KB
testcase_23 AC 36 ms
12,672 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 25 ms
10,752 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 26 ms
10,752 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

import sys


def make_one_count_of_binary_digit(N):
    l = []
    for i in range(0, N + 1):
        l.append(bin(i).count('1'))
    return l


def move_idx(p_list, idx, N):
    p_list[idx]['right_move'] = True
    if idx + binary_digit_one_list[idx] <= N:
        return p_list, idx + binary_digit_one_list[idx]
    p_list[idx]['left_move'] = True
    return p_list, idx - binary_digit_one_list[idx]


if __name__ == '__main__':
    N = int(input())
    possibility_list = [{'left_move': None, 'right_move': None} for _ in range(0, N + 1)]
    binary_digit_one_list = make_one_count_of_binary_digit(N)
    flag = True
    idx = 1
    count = 1
    while flag:
        if idx == N:
            print(count)
            flag = False
            sys.exit()
        if possibility_list[idx]['left_move'] and possibility_list[idx]['right_move']:
            print(-1)
            flag = False
            sys.exit()
        else:
            possibility_list, idx = move_idx(possibility_list, idx, N)
            count += 1
0