結果

問題 No.1952 xooooooooooor
ユーザー H20H20
提出日時 2022-04-10 19:24:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-12-21 10:10:41
合計ジャッジ時間 2,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,092 KB
testcase_01 AC 35 ms
53,100 KB
testcase_02 AC 35 ms
52,236 KB
testcase_03 AC 36 ms
53,112 KB
testcase_04 AC 34 ms
52,852 KB
testcase_05 AC 35 ms
52,152 KB
testcase_06 AC 34 ms
52,292 KB
testcase_07 AC 35 ms
51,616 KB
testcase_08 AC 34 ms
52,408 KB
testcase_09 AC 35 ms
52,676 KB
testcase_10 AC 36 ms
52,368 KB
testcase_11 AC 35 ms
52,028 KB
testcase_12 AC 36 ms
52,252 KB
testcase_13 AC 37 ms
52,348 KB
testcase_14 AC 34 ms
52,144 KB
testcase_15 AC 34 ms
51,944 KB
testcase_16 AC 35 ms
52,200 KB
testcase_17 AC 36 ms
52,012 KB
testcase_18 AC 35 ms
52,016 KB
testcase_19 AC 37 ms
52,140 KB
testcase_20 AC 35 ms
52,344 KB
testcase_21 AC 35 ms
52,632 KB
testcase_22 AC 35 ms
52,488 KB
testcase_23 AC 36 ms
52,348 KB
testcase_24 AC 36 ms
52,312 KB
testcase_25 AC 36 ms
53,236 KB
testcase_26 AC 37 ms
52,420 KB
testcase_27 AC 36 ms
52,880 KB
testcase_28 AC 35 ms
53,484 KB
testcase_29 AC 34 ms
52,020 KB
testcase_30 AC 35 ms
53,488 KB
testcase_31 AC 36 ms
52,488 KB
testcase_32 AC 38 ms
52,292 KB
testcase_33 AC 35 ms
53,100 KB
testcase_34 AC 35 ms
53,152 KB
testcase_35 AC 35 ms
52,388 KB
testcase_36 AC 34 ms
53,636 KB
testcase_37 AC 36 ms
52,720 KB
testcase_38 AC 35 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
if not(0<=N<=10**9 and 1<=M<=10**9):
    exit()

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