結果

問題 No.3 ビットすごろく
ユーザー tkr182tkr182
提出日時 2018-10-01 12:18:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,315 ms / 5,000 ms
コード長 523 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,564 KB
最終ジャッジ日時 2024-07-01 09:09:22
合計ジャッジ時間 17,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 115 ms
11,104 KB
testcase_04 AC 38 ms
11,008 KB
testcase_05 AC 363 ms
11,180 KB
testcase_06 AC 135 ms
11,136 KB
testcase_07 AC 56 ms
10,880 KB
testcase_08 AC 250 ms
11,180 KB
testcase_09 AC 572 ms
12,280 KB
testcase_10 AC 825 ms
12,216 KB
testcase_11 AC 448 ms
11,244 KB
testcase_12 AC 346 ms
11,312 KB
testcase_13 AC 86 ms
11,108 KB
testcase_14 AC 778 ms
12,336 KB
testcase_15 AC 1,296 ms
12,556 KB
testcase_16 AC 1,100 ms
12,388 KB
testcase_17 AC 1,244 ms
12,420 KB
testcase_18 AC 67 ms
11,108 KB
testcase_19 AC 1,315 ms
12,432 KB
testcase_20 AC 34 ms
10,880 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 800 ms
12,344 KB
testcase_23 AC 1,315 ms
12,432 KB
testcase_24 AC 1,315 ms
12,564 KB
testcase_25 AC 1,292 ms
12,388 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 98 ms
11,136 KB
testcase_28 AC 1,063 ms
12,252 KB
testcase_29 AC 470 ms
12,128 KB
testcase_30 AC 31 ms
10,752 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 413 ms
11,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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