結果
| 問題 |
No.3 ビットすごろく
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-08-13 05:25:49 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 241 bytes |
| コンパイル時間 | 409 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 63,488 KB |
| 最終ジャッジ日時 | 2024-10-13 07:24:13 |
| 合計ジャッジ時間 | 4,886 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 RE * 10 |
ソースコード
def upd(x,t):
if 0<x<=N and A[x]==[]:Q.append(x);A[x]=A[t]+[x]
def bfs():
while Q:
t=Q.pop(0)
if t==N:return A[N]
c=bin(t).count('1');upd(t+c,t);upd(t-c,t)
return -1
N=int(input())
A=[[]]*10001
A[1]=[1]
Q=[1]
print(len(bfs()))