結果

問題 No.1741 Arrays and XOR Procedure
ユーザー kotatsugamekotatsugame
提出日時 2021-11-12 21:42:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 65,080 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 17:41:10
合計ジャッジ時間 2,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N;
const int mod=998244353;
main()
{
	cin>>N;
	int dp0=1,dp1=0;
	for(int i=0;i<N;i++)
	{
		int B;cin>>B;
		if(!(i&~(N-1)))
		{
			if(B==0)
			{
			}
			else if(B==1)
			{
				swap(dp0,dp1);
			}
			else
			{
				dp0=dp1=(dp0+dp1)%mod;
			}
		}
		else if(B==-1)
		{
			dp0=dp0*2%mod;
			dp1=dp1*2%mod;
		}
	}
	cout<<dp1<<endl;
}
0