https://ac.nowcoder.com/acm/contest/342/B

题解:暴力找规律

/*
*@Author:   STZG
*@Language: C++
*/
#include <bits/stdc++.h>
#include<iostream>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<string>
#include<vector>
#include<bitset>
#include<queue>
#include<deque>
#include<stack>
#include<cmath>
#include<list>
#include<map>
#include<set>
//#define DEBUG
#define RI register int
using namespace std;
typedef long long ll;
//typedef __int128 lll;
const int N=1000000+10;
const int MOD=998244353;
const double PI = acos(-1.0);
const double EXP = 1E-8;
const int INF = 0x3f3f3f3f;
int t,n,m,k,q;
ll ans,cnt,flag,temp;
ll a[N];
char str;
int main()
{
#ifdef DEBUG
	freopen("input.in", "r", stdin);
	//freopen("output.out", "w", stdout);
#endif
//    for(int i=1;i<N;i++){
//            cnt=1;
//        for(int j=1;j<=i;j++){
//            a[j]=j;
//            cnt*=j;
//        }
//        ans=0;
//        for(int j=1;j<=cnt;j++){
//            flag=1;
//            for(int k=1;k<=i;k++){
//                //cout<<a[k]<<" ";
//                if(a[a[k]]+k!=i+1){
//                    flag=0;
//                    break;
//                }
//
//            }
//            //cout<<endl;
//            next_permutation(a+1,a+i+1);
//            if(flag)
//                ans++;
//        }
//        cout<<i<<" "<<ans<<endl;
//
//    }

    a[1]=1;
    a[2]=0;
    a[3]=0;
    a[4]=2;
    for(int i=5;i<N;i++){
        if(i%4==1){
            a[i]=a[i-1];
        }else if(i%4==0){
            a[i]=(a[(i/4-1)*4]*2*(i/2-1))%MOD;
        }
    }
    while(~scanf("%d",&n)){
        cout<<a[n]<<endl;
    }
    //cout << "Hello world!" << endl;
    return 0;
}