結果

問題 No.3 ビットすごろく
ユーザー motor_radial
提出日時 2019-08-24 18:20:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-14 13:09:19
合計ジャッジ時間 2,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
route=set()
route.add(1)
mass=1
while(mass!=N):
    mass_2=str(bin(mass)).count("1")
    mass+=mass_2
    if mass>N:
        mass-=(mass_2*2)
    if mass not in route:
        route.add(mass)
    else:
        print(-1);exit()
print(len(list(route)))
0