結果

問題 No.2067 ±2^k operations
ユーザー 👑 rin204rin204
提出日時 2022-09-02 23:14:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,226 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-11-16 06:07:02
合計ジャッジ時間 4,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 147 ms
76,672 KB
testcase_02 AC 143 ms
76,672 KB
testcase_03 AC 151 ms
77,056 KB
testcase_04 AC 144 ms
77,056 KB
testcase_05 AC 143 ms
76,672 KB
testcase_06 AC 146 ms
76,800 KB
testcase_07 AC 164 ms
76,544 KB
testcase_08 AC 170 ms
76,544 KB
testcase_09 AC 165 ms
76,672 KB
testcase_10 AC 161 ms
76,672 KB
testcase_11 AC 159 ms
76,288 KB
testcase_12 AC 166 ms
76,800 KB
testcase_13 AC 165 ms
76,544 KB
testcase_14 AC 164 ms
76,800 KB
testcase_15 AC 164 ms
76,672 KB
testcase_16 AC 161 ms
76,288 KB
testcase_17 AC 156 ms
76,288 KB
testcase_18 AC 152 ms
76,416 KB
testcase_19 AC 108 ms
76,160 KB
testcase_20 AC 128 ms
77,568 KB
testcase_21 AC 139 ms
76,928 KB
testcase_22 AC 135 ms
76,672 KB
testcase_23 AC 149 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
直近が
0
00...
1
11...
で遷移が変わるはず

11011
3なんだよな
"""

bi = [1]
for _ in range(60):
    bi.append(bi[-1] * 2)

def solve(S):
    eq = 0
    ans = 0
    dp = [0, 0, 0, 0]
    eq = 1
    cnt = 1
    t = len(S) - 2
    flg = True
    for s in S[1:]:
        ndp = [0] * 4
        ndp[0] = dp[3]
        ndp[1] = dp[0] + dp[1] + dp[2]
        ndp[2] = dp[1]
        ndp[3] = dp[0] + dp[2] + dp[3]
        ans += (dp[0] + dp[1] + dp[2]) * bi[t]
        if s == "1":
            if cnt >= 2:
                ndp[0] += 1
            else:
                ndp[1] += 1
            ans += eq * bi[t]

            cnt += 1
            if cnt <= 2:
                eq += 1
            flg = False
        elif flg:
            cnt = 0
        else:
            if cnt == 1:
                cnt = 0
            else:
                cnt = 1
            flg = True
        
        ndp[2] += 1
        ans += bi[t]
        t -= 1
        dp = ndp
    
    
    ans += eq
    return ans

for _ in range(int(input())):
    n = int(input())
    ans = solve(bin(n)[2:])
    print(ans)

exit()

print()
bef = 0
for i in range(1, 33):
    ans = solve(bin(i)[2:])
    print(bin(i)[2:], ans - bef, ans)
    bef = ans
0