結果
| 問題 | No.1870 Xor Matrix |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-12 11:06:01 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 164 bytes |
| 記録 | |
| コンパイル時間 | 576 ms |
| コンパイル使用メモリ | 98,964 KB |
| 最終ジャッジ日時 | 2026-04-05 21:24:29 |
| 合計ジャッジ時間 | 1,122 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、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>'; this is probably fixable by adding '#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>'; this is probably fixable by adding '#include <iostream>'
ソースコード
#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());}