結果

問題 No.1870 Xor Matrix
ユーザー t98slidert98slider
提出日時 2022-03-12 10:57:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 274 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 90,348 KB
最終ジャッジ日時 2024-09-16 16:34:30
合計ジャッジ時間 2,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:7:5: error: 'cin' was not declared in this scope
    7 |     cin>>n>>m;
      |     ^~~
main.cpp:2:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
    1 | #include<atcoder/all>
  +++ |+#include <iostream>
    2 | using namespace std;
main.cpp:10:5: error: 'cout' was not declared in this scope
   10 |     cout<<(v1==v2?mint(2).pow(20ll*(n-1)*(m-1)).val():0)<<endl;
      |     ^~~~
main.cpp:10:5: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
main.cpp:10:59: error: 'endl' was not declared in this scope
   10 |     cout<<(v1==v2?mint(2).pow(20ll*(n-1)*(m-1)).val():0)<<endl;
      |                                                           ^~~~
main.cpp:2:1: note: 'std::endl' is defined in header '<ostream>'; did you forget to '#include <ostream>'?
    1 | #include<atcoder/all>
  +++ |+#include <ostream>
    2 | using namespace std;

ソースコード

diff #

#include<atcoder/all>
using namespace std;
using mint=atcoder::modint998244353;

int main(){
    int n,m,v,v1=0,v2=0;
    cin>>n>>m;
    for(int i=0;i<n;i++)cin>>v,v1^=v;
   	for(int j=0;j<m;j++)cin>>v,v2^=v;
    cout<<(v1==v2?mint(2).pow(20ll*(n-1)*(m-1)).val():0)<<endl;
}
0