結果
問題 | No.1870 Xor Matrix |
ユーザー | t98slider |
提出日時 | 2022-03-12 11:02:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 204 bytes |
コンパイル時間 | 847 ms |
コンパイル使用メモリ | 90,208 KB |
最終ジャッジ日時 | 2024-09-16 16:40:26 |
合計ジャッジ時間 | 1,978 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:5:15: error: 'cin' is not a member of 'std' 5 | auto&q=std::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 | int n,m,v,x,i,j; main.cpp:8:8: error: 'cout' is not a member of 'std' 8 | std::cout<<(x?0:atcoder::modint998244353(2).pow(20ll*(n-1)*(m-1)).val()); | ^~~~ main.cpp:8:8: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
ソースコード
#include<atcoder/all> int n,m,v,x,i,j; int main(){ auto&q=std::cin>>n>>m; while(i++<n)q>>v,x^=v; while(j++<m)q>>v,x^=v; std::cout<<(x?0:atcoder::modint998244353(2).pow(20ll*(n-1)*(m-1)).val()); }