結果

問題 No.3 ビットすごろく
ユーザー Shin09shinShin09shin
提出日時 2019-01-18 07:11:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,309 ms / 5,000 ms
コード長 561 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,436 KB
最終ジャッジ日時 2024-07-01 09:13:11
合計ジャッジ時間 17,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 115 ms
11,108 KB
testcase_04 AC 38 ms
10,880 KB
testcase_05 AC 361 ms
11,432 KB
testcase_06 AC 132 ms
11,136 KB
testcase_07 AC 57 ms
10,880 KB
testcase_08 AC 248 ms
11,312 KB
testcase_09 AC 569 ms
12,280 KB
testcase_10 AC 822 ms
12,328 KB
testcase_11 AC 446 ms
11,368 KB
testcase_12 AC 346 ms
11,308 KB
testcase_13 AC 85 ms
11,136 KB
testcase_14 AC 779 ms
12,204 KB
testcase_15 AC 1,279 ms
12,324 KB
testcase_16 AC 1,095 ms
12,388 KB
testcase_17 AC 1,239 ms
12,420 KB
testcase_18 AC 67 ms
11,264 KB
testcase_19 AC 1,298 ms
12,304 KB
testcase_20 AC 34 ms
10,880 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 795 ms
12,340 KB
testcase_23 AC 1,309 ms
12,312 KB
testcase_24 AC 1,302 ms
12,436 KB
testcase_25 AC 1,286 ms
12,416 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 99 ms
11,112 KB
testcase_28 AC 1,060 ms
12,256 KB
testcase_29 AC 471 ms
12,252 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 414 ms
11,240 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