結果

問題 No.3 ビットすごろく
ユーザー Miyu OsanaiMiyu Osanai
提出日時 2019-04-02 09:30:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 648 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,692 KB
最終ジャッジ日時 2024-05-06 12:40:49
合計ジャッジ時間 10,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,692 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 72 ms
10,624 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 283 ms
10,624 KB
testcase_08 AC 2,109 ms
10,624 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    mp = [len([d for d in bin(i)[2:] if d == '1']) for i in range(1, n+1)]
    targets = [n-1]
    count = 1
    while len(targets) != 0 and 0 not in targets:
        tmp = []
        for target in targets:
            tmp += movables(mp, target)
        targets = tmp
        count += 1
    if len(targets) == 0:
        print(-1)
    else:
        print(count)


def movables(mp, target):
    result = []
    for i, p in enumerate(mp):
        if ((i + p == target) or (i - p == target)) and i != target:
            mp[i] = 0
            result.append(i)
    return result


if __name__ == "__main__":
    main()
0