結果

問題 No.1952 xooooooooooor
ユーザー chineristACchineristAC
提出日時 2022-05-20 22:18:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 768 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 57,856 KB
最終ジャッジ日時 2024-09-20 08:30:52
合計ジャッジ時間 3,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,316 KB
testcase_01 AC 43 ms
55,648 KB
testcase_02 AC 44 ms
56,524 KB
testcase_03 AC 42 ms
56,396 KB
testcase_04 AC 42 ms
56,388 KB
testcase_05 AC 43 ms
55,880 KB
testcase_06 AC 45 ms
56,516 KB
testcase_07 AC 43 ms
56,116 KB
testcase_08 AC 44 ms
56,480 KB
testcase_09 AC 45 ms
57,000 KB
testcase_10 AC 43 ms
56,928 KB
testcase_11 WA -
testcase_12 AC 45 ms
56,060 KB
testcase_13 AC 45 ms
57,256 KB
testcase_14 AC 43 ms
57,472 KB
testcase_15 WA -
testcase_16 AC 44 ms
55,784 KB
testcase_17 AC 44 ms
56,816 KB
testcase_18 AC 44 ms
55,896 KB
testcase_19 AC 45 ms
56,392 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 43 ms
56,116 KB
testcase_23 AC 43 ms
56,120 KB
testcase_24 AC 44 ms
57,512 KB
testcase_25 AC 44 ms
56,896 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 44 ms
57,348 KB
testcase_29 WA -
testcase_30 AC 43 ms
56,052 KB
testcase_31 WA -
testcase_32 AC 43 ms
57,328 KB
testcase_33 WA -
testcase_34 AC 44 ms
57,208 KB
testcase_35 AC 44 ms
56,196 KB
testcase_36 AC 43 ms
55,848 KB
testcase_37 AC 44 ms
56,916 KB
testcase_38 AC 44 ms
56,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
import heapq
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 998244353

N,M = mi()

if N==0:
    exit(print(0))

n = N.bit_length()

if M <= 50:
    res = 0
    for i in range(M):
        res ^= N<<i
    exit(print(res%mod))

lower = 0
for i in range(n):
    lower ^= N<<i
lower = lower & (2**n-1)

upper = 0
for i in range(n):
    upper ^= N>>i

d = 0
for i in range(n):
    d ^= (N>>i)&1

"""
n+M-1桁のうち上n桁がupper,下n桁がlower
残り2^n~2^(M-2)までがd
"""

res = upper*pow(2,M-1,mod)+lower + pow(2,n,mod) * (pow(2,M-1-n,mod)-1) % mod
res %= mod

print(res)
0