結果

問題 No.3 ビットすごろく
ユーザー mkawa2mkawa2
提出日時 2019-04-18 15:55:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 354 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 413,344 KB
最終ジャッジ日時 2024-09-22 09:16:08
合計ジャッジ時間 33,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 583 ms
47,488 KB
testcase_04 AC 86 ms
14,080 KB
testcase_05 AC 2,509 ms
150,016 KB
testcase_06 AC 711 ms
55,808 KB
testcase_07 AC 258 ms
21,888 KB
testcase_08 AC 1,557 ms
104,320 KB
testcase_09 AC 4,172 ms
244,608 KB
testcase_10 TLE -
testcase_11 AC 3,414 ms
187,136 KB
testcase_12 AC 2,379 ms
143,360 KB
testcase_13 AC 430 ms
35,456 KB
testcase_14 TLE -
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())
ps=set([1])
cnt=1
log=[]
while n not in ps:
    nps=set()
    for p in ps:
        dp=format(p,"b").count("1")
        if 0 < p + dp < n + 1:
            nps.add(p + dp)
        if 0 < p - dp < n + 1:
            nps.add(p - dp)
    if len(nps)==0 or nps in log:
        cnt=-1
        break
    log+=[nps]
    cnt+=1
    ps=nps
print(cnt)
0