結果

問題 No.3 ビットすごろく
ユーザー rusa6111rusa6111
提出日時 2019-06-28 22:00:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,704 KB
最終ジャッジ日時 2024-07-02 04:44:34
合計ジャッジ時間 20,298 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 55 ms
63,976 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 96 ms
68,224 KB
testcase_08 AC 328 ms
72,704 KB
testcase_09 AC 750 ms
74,760 KB
testcase_10 AC 1,017 ms
76,432 KB
testcase_11 AC 623 ms
74,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,241 ms
76,416 KB
testcase_17 AC 1,397 ms
76,204 KB
testcase_18 AC 107 ms
68,736 KB
testcase_19 AC 1,474 ms
76,160 KB
testcase_20 AC 59 ms
64,768 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,467 ms
76,148 KB
testcase_25 AC 1,433 ms
76,420 KB
testcase_26 AC 39 ms
52,308 KB
testcase_27 AC 133 ms
68,992 KB
testcase_28 AC 1,189 ms
76,372 KB
testcase_29 AC 640 ms
75,008 KB
testcase_30 AC 45 ms
59,008 KB
testcase_31 AC 47 ms
60,032 KB
testcase_32 AC 553 ms
74,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bc(n):
    c=0
    while n:
        if n%2:
            n-=1
            c+=1
        n=int(n/2)
    return c

n=int(input())
b=[bc(i+1) for i in range(n)]
c=[9999999 for i in range(n)]
c[0]=1
for i in range(n):
    for j in range(n):
        if j-b[j]>=0 and c[j-b[j]]>c[j]+1:
            c[j-b[j]]=c[j]+1
        if j+b[j]<n and c[j+b[j]]>c[j]+1:
            c[j+b[j]]=c[j]+1
if c[n-1]:
    print(c[n-1])
else:
    print(-1)
0