結果

問題 No.1504 ヌメロニム
ユーザー kotatsugamekotatsugame
提出日時 2021-05-08 01:51:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 112,452 KB
実行使用メモリ 24,100 KB
最終ジャッジ日時 2024-09-15 13:39:46
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 163 ms
23,216 KB
testcase_25 AC 88 ms
15,232 KB
testcase_26 AC 166 ms
23,956 KB
testcase_27 AC 89 ms
16,636 KB
testcase_28 AC 90 ms
16,648 KB
testcase_29 AC 165 ms
23,896 KB
testcase_30 AC 163 ms
23,896 KB
testcase_31 AC 87 ms
15,900 KB
testcase_32 AC 88 ms
16,340 KB
testcase_33 AC 165 ms
23,560 KB
testcase_34 AC 22 ms
6,524 KB
testcase_35 AC 20 ms
5,980 KB
testcase_36 AC 83 ms
13,344 KB
testcase_37 AC 11 ms
5,376 KB
testcase_38 AC 168 ms
23,972 KB
testcase_39 AC 169 ms
24,100 KB
testcase_40 AC 167 ms
23,976 KB
testcase_41 AC 167 ms
23,972 KB
testcase_42 AC 166 ms
23,972 KB
testcase_43 AC 165 ms
23,972 KB
testcase_44 AC 165 ms
24,052 KB
testcase_45 AC 170 ms
24,096 KB
testcase_46 AC 167 ms
23,972 KB
testcase_47 AC 168 ms
24,096 KB
testcase_48 AC 88 ms
15,792 KB
testcase_49 AC 88 ms
15,360 KB
testcase_50 AC 3 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 3 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 21 ms
5,856 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
#include<atcoder/convolution>
using namespace std;
using mint=atcoder::modint998244353;
int N;
string S;
main()
{
	cin>>N>>S;
	vector<mint>I(N),J(N);
	for(int i=0;i<N;i++)
	{
		if(S[i]=='i')I[N-i-1]=1;
		else J[i]=1;
	}
	vector<mint>K=convolution(I,J);
	vector<mint>A(N-1);
	mint p=1;
	for(int i=0;i<N-1;i++)
	{
		A[i]=K[N+i]*p;
		p*=i+1;
	}
	vector<mint>B(N-1);
	vector<mint>inv(N-1);
	p=1/p;
	for(int i=N-2;i>=0;i--)
	{
		B[N-2-i]=p*=i+1;
		inv[i]=p;
	}
	vector<mint>C=convolution(A,B);
	int ans=0;
	for(int k=0;k<N-1;k++)
	{
		ans^=(C[N-2+k]*inv[k]).val();
	}
	cout<<ans<<endl;
}
0