結果

問題 No.1952 xooooooooooor
ユーザー H20H20
提出日時 2022-03-25 00:56:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 53,796 KB
最終ジャッジ日時 2024-06-01 06:23:15
合計ジャッジ時間 2,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,328 KB
testcase_01 AC 39 ms
52,756 KB
testcase_02 AC 39 ms
52,720 KB
testcase_03 AC 39 ms
52,376 KB
testcase_04 AC 39 ms
52,620 KB
testcase_05 AC 39 ms
52,076 KB
testcase_06 AC 41 ms
52,176 KB
testcase_07 AC 40 ms
52,676 KB
testcase_08 AC 39 ms
53,780 KB
testcase_09 AC 39 ms
52,884 KB
testcase_10 AC 39 ms
52,808 KB
testcase_11 AC 39 ms
52,512 KB
testcase_12 AC 40 ms
52,724 KB
testcase_13 AC 39 ms
53,156 KB
testcase_14 AC 39 ms
53,144 KB
testcase_15 AC 40 ms
52,932 KB
testcase_16 AC 39 ms
52,420 KB
testcase_17 AC 39 ms
52,952 KB
testcase_18 AC 40 ms
51,812 KB
testcase_19 AC 40 ms
52,692 KB
testcase_20 AC 40 ms
52,144 KB
testcase_21 AC 39 ms
52,424 KB
testcase_22 AC 40 ms
52,568 KB
testcase_23 AC 39 ms
53,364 KB
testcase_24 AC 40 ms
52,848 KB
testcase_25 AC 39 ms
53,796 KB
testcase_26 AC 39 ms
52,328 KB
testcase_27 AC 39 ms
52,404 KB
testcase_28 AC 40 ms
52,560 KB
testcase_29 AC 39 ms
52,700 KB
testcase_30 AC 39 ms
53,448 KB
testcase_31 AC 40 ms
51,988 KB
testcase_32 AC 40 ms
52,236 KB
testcase_33 AC 40 ms
52,888 KB
testcase_34 AC 39 ms
53,728 KB
testcase_35 AC 39 ms
52,752 KB
testcase_36 AC 39 ms
52,980 KB
testcase_37 AC 39 ms
53,372 KB
testcase_38 AC 39 ms
52,224 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