結果

問題 No.1952 xooooooooooor
ユーザー H20H20
提出日時 2022-03-25 00:57:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 119 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 144,712 KB
最終ジャッジ日時 2024-12-21 10:11:36
合計ジャッジ時間 46,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,220 KB
testcase_01 AC 43 ms
136,732 KB
testcase_02 AC 50 ms
65,540 KB
testcase_03 AC 43 ms
143,792 KB
testcase_04 AC 43 ms
59,560 KB
testcase_05 AC 44 ms
59,516 KB
testcase_06 AC 43 ms
59,620 KB
testcase_07 AC 42 ms
144,712 KB
testcase_08 AC 43 ms
59,980 KB
testcase_09 AC 42 ms
59,696 KB
testcase_10 AC 44 ms
60,884 KB
testcase_11 AC 49 ms
68,244 KB
testcase_12 AC 42 ms
58,924 KB
testcase_13 AC 45 ms
59,324 KB
testcase_14 AC 159 ms
81,880 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 763 ms
76,412 KB
testcase_28 AC 167 ms
75,120 KB
testcase_29 AC 61 ms
75,084 KB
testcase_30 AC 180 ms
75,088 KB
testcase_31 TLE -
testcase_32 AC 43 ms
52,196 KB
testcase_33 TLE -
testcase_34 AC 43 ms
53,224 KB
testcase_35 AC 42 ms
51,612 KB
testcase_36 AC 42 ms
53,028 KB
testcase_37 AC 41 ms
51,832 KB
testcase_38 AC 43 ms
136,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
mod = 998244353
ans = 0
for i in range(M):
    ans^=N*pow(2,i)
ans = ans%mod
print(ans)
0