結果

問題 No.3 ビットすごろく
ユーザー mkawa2mkawa2
提出日時 2020-01-02 23:15:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 499 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 314,228 KB
最終ジャッジ日時 2024-11-22 18:38:48
合計ジャッジ時間 100,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
286,532 KB
testcase_01 AC 46 ms
287,748 KB
testcase_02 AC 45 ms
59,844 KB
testcase_03 AC 381 ms
307,584 KB
testcase_04 AC 137 ms
308,740 KB
testcase_05 AC 2,977 ms
144,848 KB
testcase_06 AC 393 ms
312,348 KB
testcase_07 AC 251 ms
282,996 KB
testcase_08 AC 863 ms
314,228 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 2,352 ms
125,536 KB
testcase_13 AC 338 ms
311,540 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 279 ms
76,960 KB
testcase_19 TLE -
testcase_20 AC 110 ms
76,688 KB
testcase_21 AC 40 ms
53,884 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 39 ms
52,868 KB
testcase_27 AC 361 ms
77,732 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 44 ms
53,736 KB
testcase_31 AC 56 ms
59,704 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
import sys

def II(): return int(sys.stdin.readline())

def main():
    n=II()
    hp=[]
    heappush(hp,[1,1])
    cnt=[-1]*(n+1)
    while hp:
        c,u=heappop(hp)
        if u==n:
            print(c)
            exit()
        d=bin(u).count("1")
        if u+d==n or u-d==n:
            print(c+1)
            exit()
        cnt[u]=c
        if u+d<=n and cnt[u+d]==-1:heappush(hp,[c+1,u+d])
        if u-d>1 and cnt[u-d]==-1:heappush(hp,[c+1,u-d])
    print(-1)

main()
0