結果

問題 No.3 ビットすごろく
ユーザー keymoonkeymoon
提出日時 2024-12-25 02:29:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 571 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-12-25 02:30:24
合計ジャッジ時間 32,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def main():
    inp1 = int(input())

    count = 1
    num = 1
    loop_flg = True
    maxi = 0
    while loop_flg:
        if maxi < num:
            maxi = num
        
        if num == inp1:
            break
        elif num > inp1:
            num = num - (bins * 2)
        else:
            pass
        bins = int(bin(num).count("1"))
        num = bins + num
        count += 1
        
        if maxi == num:
            count = -1
            break
        
    if inp1 == 1:
        count = 1
        
    print(count)

if __name__ == '__main__':
    main()
0