結果

問題 No.3 ビットすごろく
ユーザー tkr182tkr182
提出日時 2018-10-01 12:02:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,360 KB
最終ジャッジ日時 2024-10-12 09:39:22
合計ジャッジ時間 28,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 465 ms
11,008 KB
testcase_04 AC 74 ms
10,752 KB
testcase_05 AC 1,959 ms
11,552 KB
testcase_06 AC 565 ms
11,008 KB
testcase_07 AC 208 ms
10,752 KB
testcase_08 AC 1,208 ms
11,228 KB
testcase_09 AC 3,236 ms
12,288 KB
testcase_10 AC 4,256 ms
12,412 KB
testcase_11 AC 2,628 ms
11,680 KB
testcase_12 AC 1,968 ms
11,532 KB
testcase_13 AC 337 ms
11,008 KB
testcase_14 AC 3,934 ms
12,288 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
a=1
c=[1]
d=[]
if N==1:
    print(1)
else:    
    while a:
        d=c
        d =list(set(d))
        for i in range(0,len(c)):
             e=bin(c[i]).count("1")
             p=c[i]+e 
             q=c[i]-e
             if p<=N:
                c.append(p)
             if q>0:
                c.append(q)
        a+=1
        c =list(set(c))
        if N in c:
            print(a)
            break
        if c==d:
            print(-1)
            break
0