結果
| 問題 |
No.1870 Xor Matrix
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-12 11:07:43 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 179 bytes |
| コンパイル時間 | 833 ms |
| コンパイル使用メモリ | 90,232 KB |
| 最終ジャッジ日時 | 2024-09-16 16:45:05 |
| 合計ジャッジ時間 | 1,580 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / 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;
main.cpp:7:8: error: 'cout' is not a member of 'std'
7 | std::cout<<(x?0:atcoder::modint998244353(2).pow(20ll*(n-1)*(m-1)).val());
| ^~~~
main.cpp:7:8: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
ソースコード
#include<atcoder/all>
int n,m,v,x,i;
int 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());
}