結果

問題 No.3254 Xor, Max and Sum
ユーザー しもりん
提出日時 2025-09-06 01:45:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2025-09-06 01:45:46
合計ジャッジ時間 4,216 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import os


IS_LOCAL = os.environ.get("LOCAL") == "true"


def debug(*args, sep=" ", end="\n", flush=False) -> None:
    if IS_LOCAL:
        print(*args, sep=sep, end=end, file=sys.stderr, flush=flush)


def yn(flg: bool) -> bool:
    print('Yes' if flg else 'No')
    return flg


def gcd(a, b):
    a = abs(a); b = abs(b)
    if a < b: a, b = b, a
    while b > 0:
        a, b = b, a % b
    return a


def lcm(a, b):
    return a * b // gcd(a, b)


def main():
    readline = sys.stdin.readline

    N, M = map(int, readline().split())
    if N & 1 == 0:
        ans = N * M
    else:
        ans = 0
        log = M.bit_length()
        x = 0
        for i in range(log - 1, -1, -1):
            m = 1 << i
            if M & m:
                if x < N:
                    x += 1
                ans += (N - 1) * m
            else:
                ans += (x - (x & 1)) * m
    print(ans)


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