結果

問題 No.1952 xooooooooooor
ユーザー H20H20
提出日時 2022-03-25 21:17:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-06-01 06:23:39
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,740 KB
testcase_01 AC 39 ms
53,056 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 40 ms
52,284 KB
testcase_04 AC 39 ms
52,880 KB
testcase_05 AC 39 ms
54,192 KB
testcase_06 AC 40 ms
53,136 KB
testcase_07 AC 39 ms
53,144 KB
testcase_08 AC 39 ms
53,196 KB
testcase_09 AC 39 ms
52,996 KB
testcase_10 AC 40 ms
52,140 KB
testcase_11 AC 40 ms
52,408 KB
testcase_12 AC 40 ms
52,648 KB
testcase_13 AC 40 ms
52,584 KB
testcase_14 AC 40 ms
53,072 KB
testcase_15 AC 40 ms
53,076 KB
testcase_16 AC 39 ms
52,376 KB
testcase_17 AC 39 ms
52,592 KB
testcase_18 AC 39 ms
53,204 KB
testcase_19 AC 38 ms
53,204 KB
testcase_20 AC 39 ms
53,020 KB
testcase_21 AC 38 ms
52,648 KB
testcase_22 AC 39 ms
52,928 KB
testcase_23 AC 40 ms
52,488 KB
testcase_24 AC 39 ms
52,612 KB
testcase_25 AC 40 ms
53,412 KB
testcase_26 AC 39 ms
53,380 KB
testcase_27 AC 39 ms
52,004 KB
testcase_28 AC 39 ms
52,124 KB
testcase_29 AC 39 ms
52,460 KB
testcase_30 AC 39 ms
52,672 KB
testcase_31 AC 39 ms
52,728 KB
testcase_32 AC 39 ms
53,264 KB
testcase_33 AC 40 ms
52,952 KB
testcase_34 AC 40 ms
52,700 KB
testcase_35 AC 39 ms
53,072 KB
testcase_36 AC 39 ms
52,928 KB
testcase_37 AC 39 ms
53,084 KB
testcase_38 AC 40 ms
52,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
mod = 998244353
BITN = format(N,'b')
bitnlen = len(BITN)
if M>len(BITN):
    HIGH = []
    temp = 0
    for b in BITN:
        temp^=int(b)
        HIGH.append(temp)
    LOWr = []
    temp = 0
    for b in BITN[::-1]:
        temp^=int(b)
        LOWr.append(temp)

    ans = 0
    for i in range(bitnlen):
        ans += LOWr[i]*pow(2,i,mod)
    for i in range(bitnlen):
        ans += HIGH[i]*pow(2,bitnlen+M-2-i,mod)
    if BITN.count('1')%2==1:
        ans += pow(2,M-1,mod)-pow(2,bitnlen,mod)
else:
    ans = 0
    for i in range(M):
        ans^=N*pow(2,i)
print(ans%mod)
0