結果

問題 No.3 ビットすごろく
ユーザー syunsuke1024syunsuke1024
提出日時 2020-05-06 10:39:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 71,356 KB
最終ジャッジ日時 2024-07-01 09:47:30
合計ジャッジ時間 2,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,244 KB
testcase_01 AC 39 ms
52,016 KB
testcase_02 AC 40 ms
52,152 KB
testcase_03 AC 52 ms
63,196 KB
testcase_04 AC 44 ms
54,088 KB
testcase_05 AC 58 ms
68,172 KB
testcase_06 AC 50 ms
63,784 KB
testcase_07 AC 49 ms
61,972 KB
testcase_08 AC 57 ms
67,116 KB
testcase_09 AC 59 ms
69,044 KB
testcase_10 AC 59 ms
70,120 KB
testcase_11 AC 60 ms
68,768 KB
testcase_12 AC 58 ms
67,732 KB
testcase_13 AC 50 ms
63,468 KB
testcase_14 AC 59 ms
69,740 KB
testcase_15 AC 59 ms
70,720 KB
testcase_16 AC 60 ms
70,168 KB
testcase_17 AC 59 ms
70,908 KB
testcase_18 AC 49 ms
63,768 KB
testcase_19 AC 60 ms
70,932 KB
testcase_20 AC 39 ms
52,556 KB
testcase_21 AC 37 ms
52,172 KB
testcase_22 AC 60 ms
69,872 KB
testcase_23 AC 59 ms
70,636 KB
testcase_24 AC 60 ms
71,232 KB
testcase_25 AC 60 ms
70,784 KB
testcase_26 AC 38 ms
52,504 KB
testcase_27 AC 50 ms
63,236 KB
testcase_28 AC 60 ms
71,356 KB
testcase_29 AC 59 ms
68,572 KB
testcase_30 AC 38 ms
52,836 KB
testcase_31 AC 39 ms
54,032 KB
testcase_32 AC 59 ms
68,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
D=[10**9 for i in range(N+1)]
D[0]=0
D[1]=1

Q=[1]
for i in range(10**6):
    if i==len(Q):
        break
    n=Q[i]
    sn=str(bin(Q[i]))
    cnt=sn.count("1")
    #print(cnt)
    if Q[i]+cnt<=N and D[Q[i]+cnt]==10**9:
        D[Q[i]+cnt]=D[Q[i]]+1
        Q.append(Q[i]+cnt)
    if Q[i]-cnt>1 and D[Q[i]-cnt]==10**9:
        D[Q[i]-cnt]=D[Q[i]]+1
        Q.append(Q[i]-cnt)
if D[N]==10**9:
    print(-1)
else:
    print(D[N])
0