結果

問題 No.1504 ヌメロニム
ユーザー chocoruskchocorusk
提出日時 2021-05-07 23:05:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 3,663 ms
コンパイル使用メモリ 197,492 KB
実行使用メモリ 38,576 KB
最終ジャッジ日時 2024-09-15 11:11:26
合計ジャッジ時間 9,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
19,200 KB
testcase_01 AC 14 ms
19,072 KB
testcase_02 AC 14 ms
19,200 KB
testcase_03 AC 14 ms
19,072 KB
testcase_04 AC 13 ms
19,072 KB
testcase_05 AC 14 ms
19,072 KB
testcase_06 AC 14 ms
19,072 KB
testcase_07 AC 14 ms
19,072 KB
testcase_08 AC 13 ms
19,072 KB
testcase_09 AC 13 ms
19,072 KB
testcase_10 AC 13 ms
19,072 KB
testcase_11 AC 13 ms
19,072 KB
testcase_12 AC 14 ms
19,072 KB
testcase_13 AC 14 ms
19,200 KB
testcase_14 AC 13 ms
19,200 KB
testcase_15 AC 13 ms
19,200 KB
testcase_16 AC 13 ms
19,072 KB
testcase_17 AC 13 ms
19,200 KB
testcase_18 AC 14 ms
19,072 KB
testcase_19 AC 13 ms
19,072 KB
testcase_20 AC 15 ms
19,328 KB
testcase_21 AC 14 ms
19,328 KB
testcase_22 AC 14 ms
19,200 KB
testcase_23 AC 13 ms
19,072 KB
testcase_24 AC 179 ms
37,940 KB
testcase_25 AC 100 ms
30,088 KB
testcase_26 AC 181 ms
38,560 KB
testcase_27 AC 105 ms
31,236 KB
testcase_28 AC 104 ms
31,124 KB
testcase_29 AC 178 ms
38,248 KB
testcase_30 AC 178 ms
38,240 KB
testcase_31 AC 100 ms
30,456 KB
testcase_32 AC 101 ms
31,192 KB
testcase_33 AC 178 ms
38,192 KB
testcase_34 AC 34 ms
21,768 KB
testcase_35 AC 33 ms
21,352 KB
testcase_36 AC 95 ms
28,324 KB
testcase_37 AC 23 ms
20,284 KB
testcase_38 AC 182 ms
38,572 KB
testcase_39 AC 181 ms
38,444 KB
testcase_40 AC 179 ms
38,572 KB
testcase_41 AC 180 ms
38,568 KB
testcase_42 AC 179 ms
38,448 KB
testcase_43 AC 181 ms
38,568 KB
testcase_44 AC 179 ms
38,444 KB
testcase_45 AC 178 ms
38,572 KB
testcase_46 AC 181 ms
38,576 KB
testcase_47 AC 181 ms
38,572 KB
testcase_48 AC 99 ms
30,652 KB
testcase_49 AC 98 ms
30,216 KB
testcase_50 AC 14 ms
19,456 KB
testcase_51 AC 14 ms
19,200 KB
testcase_52 AC 13 ms
19,072 KB
testcase_53 AC 14 ms
19,328 KB
testcase_54 AC 14 ms
19,200 KB
testcase_55 AC 32 ms
21,468 KB
testcase_56 AC 15 ms
19,072 KB
testcase_57 AC 13 ms
19,072 KB
testcase_58 AC 13 ms
19,072 KB
testcase_59 AC 14 ms
19,072 KB
testcase_60 AC 13 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;
mint f[2000010], invf[2000010];
void fac(int n){
    f[0]=1;
    for(ll i=1; i<=n; i++) f[i]=f[i-1]*i;
    invf[n]=f[n].inv();
    for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1);
}
mint comb(int x, int y){
    if(!(0<=y && y<=x)) return 0;
    return f[x]*invf[y]*invf[x-y];
}
int main()
{
	int n; cin>>n;
	string s; cin>>s;
	vector<mint> a(n), b(n);
	for(int i=0; i<n; i++){
		if(s[i]=='i') a[i]=1;
	}
	for(int i=0; i<n; i++){
		if(s[i]=='n') b[n-1-i]=1;
	}
	auto c=convolution(a, b);
	fac(n);
	vector<mint> d(n-1);
	for(int i=0; i<n-1; i++) d[i]=c[n-2-i]*f[i];
	vector<mint> e(n-1);
	for(int i=0; i<n-1; i++) e[i]=invf[n-2-i];
	auto c1=convolution(d, e);
	int ans=0;
	for(int i=0; i<n-1; i++){
		mint ans1=c1[n-2+i]*invf[i];
		ans^=ans1.val();
	}
	cout<<ans<<endl;
    return 0;
}
0