結果

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

コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    3 | main(){auto&q=std::cin>>n>>m;while(i++<n+m)q>>v,x^=v;std::cout<<(x?0:atcoder::modint998244353(2).pow(20ll*(n-1)*(m-1)).val());}
      | ^~~~
main.cpp: In function 'int main()':
main.cpp:3:20: error: 'cin' is not a member of 'std'
    3 | main(){auto&q=std::cin>>n>>m;while(i++<n+m)q>>v,x^=v;std::cout<<(x?0:atcoder::modint998244353(2).pow(20ll*(n-1)*(m-1)).val());}
      |                    ^~~
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 | int n,m,v,x,i;
main.cpp:3:59: error: 'cout' is not a member of 'std'
    3 | main(){auto&q=std::cin>>n>>m;while(i++<n+m)q>>v,x^=v;std::cout<<(x?0:atcoder::modint998244353(2).pow(20ll*(n-1)*(m-1)).val());}
      |                                                           ^~~~
main.cpp:3:59: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?

ソースコード

diff #

#include<atcoder/all>
int n,m,v,x,i;
main(){auto&q=std::cin>>n>>m;while(i++<n+m)q>>v,x^=v;std::cout<<(x?0:atcoder::modint998244353(2).pow(20ll*(n-1)*(m-1)).val());}
0