結果

問題 No.3 ビットすごろく
ユーザー konabekonabe
提出日時 2017-12-09 02:01:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 421 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-29 22:38:25
合計ジャッジ時間 109,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
15,872 KB
testcase_01 AC 31 ms
21,248 KB
testcase_02 AC 31 ms
21,248 KB
testcase_03 TLE -
testcase_04 AC 31 ms
15,872 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 31 ms
15,872 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 AC 33 ms
10,752 KB
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 31 ms
10,752 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 WA -
testcase_31 AC 30 ms
10,624 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def step(num):
    res = 0
    while True:
        res += num % 2
        num //= 2
        if num == 0:
            break
    return res

N = int(input())
m = 1
cnt = 0
while True:
    next = step(m)
    cnt += 1
    if N < m + next:
        m -= next
    elif N > m + next:
        m += next
    else:
        m += next
        cnt += 1
        print(cnt)
        break
    if cnt > N*N:
        print(-1)
        break
0