結果

問題 No.3 ビットすごろく
ユーザー いたいた
提出日時 2024-12-04 17:33:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 347 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-12-04 17:33:32
合計ジャッジ時間 3,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,136 KB
testcase_01 AC 49 ms
59,264 KB
testcase_02 AC 48 ms
59,136 KB
testcase_03 AC 54 ms
61,440 KB
testcase_04 AC 49 ms
59,520 KB
testcase_05 AC 55 ms
63,616 KB
testcase_06 AC 54 ms
61,824 KB
testcase_07 AC 52 ms
60,928 KB
testcase_08 AC 59 ms
63,616 KB
testcase_09 AC 62 ms
64,128 KB
testcase_10 AC 61 ms
64,384 KB
testcase_11 AC 59 ms
64,000 KB
testcase_12 AC 60 ms
63,616 KB
testcase_13 AC 58 ms
61,568 KB
testcase_14 AC 62 ms
64,256 KB
testcase_15 AC 62 ms
64,640 KB
testcase_16 AC 62 ms
64,256 KB
testcase_17 AC 62 ms
64,384 KB
testcase_18 AC 53 ms
61,312 KB
testcase_19 AC 62 ms
64,640 KB
testcase_20 AC 51 ms
59,520 KB
testcase_21 AC 48 ms
59,392 KB
testcase_22 AC 61 ms
64,256 KB
testcase_23 AC 61 ms
64,128 KB
testcase_24 AC 62 ms
64,640 KB
testcase_25 AC 62 ms
64,768 KB
testcase_26 AC 51 ms
59,264 KB
testcase_27 AC 54 ms
61,312 KB
testcase_28 AC 61 ms
64,256 KB
testcase_29 AC 61 ms
63,488 KB
testcase_30 AC 49 ms
59,392 KB
testcase_31 AC 49 ms
59,136 KB
testcase_32 AC 60 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
a=[0]*10001

for i in range(1,10001):
  a[i]=i.bit_count()
q=deque([])
q.append(1)
dist=[-1]*(N+1)
dist[1]=1
while q:
  v=q.popleft()
  g=a[v]
  if 0<v-g and dist[v-g]==-1:
    q.append(v-g)
    dist[v-g]=dist[v]+1
  if v+g<=N and dist[v+g]==-1:
    q.append(v+g)
    dist[v+g]=dist[v]+1
print(dist[N])
0