結果

問題 No.2575 Almost Increasing Sequence
ユーザー 👑 NachiaNachia
提出日時 2023-12-05 11:47:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 10,000 ms
コード長 1,854 bytes
コンパイル時間 1,254 ms
コンパイル使用メモリ 99,800 KB
実行使用メモリ 6,548 KB
スコア 10,000
最終ジャッジ日時 2023-12-05 11:47:51
合計ジャッジ時間 3,725 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
6,548 KB
testcase_01 AC 43 ms
6,548 KB
testcase_02 AC 43 ms
6,548 KB
testcase_03 AC 42 ms
6,548 KB
testcase_04 AC 43 ms
6,548 KB
testcase_05 AC 44 ms
6,548 KB
testcase_06 AC 43 ms
6,548 KB
testcase_07 AC 43 ms
6,548 KB
testcase_08 AC 42 ms
6,548 KB
testcase_09 AC 42 ms
6,548 KB
testcase_10 AC 42 ms
6,548 KB
testcase_11 AC 43 ms
6,548 KB
testcase_12 AC 42 ms
6,548 KB
testcase_13 AC 43 ms
6,548 KB
testcase_14 AC 42 ms
6,548 KB
testcase_15 AC 42 ms
6,548 KB
testcase_16 AC 43 ms
6,548 KB
testcase_17 AC 43 ms
6,548 KB
testcase_18 AC 43 ms
6,548 KB
testcase_19 AC 43 ms
6,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <queue>
#include <array>
#include <cmath>
#include <atcoder/modint>
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(i64 i=0; i<(i64)(n); i++)
#define repr(i,n) for(i64 i=(i64)(n)-1; i>=0; i--)
const i64 INF = 1001001001001001001;
const char* yn(bool x){ return x ? "Yes" : "No"; }
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
template<typename A> using nega_queue = priority_queue<A,vector<A>,greater<A>>;
using Modint = atcoder::static_modint<998244353>;
//#include "nachia/vec.hpp"

void testcase(){
    int K; cin >> K;
    int N = 500;
    vector<Modint> powK(N+1);
    rep(i,N+1) powK[i] = Modint(i).pow(K);
    vector<Modint> Fact(N+1); Fact[0] = 1;
    for(int i=1; i<=N; i++) Fact[i] = Fact[i-1] * Modint::raw(i);
    vector<Modint> InvFactSq(N+1); InvFactSq[N] = (Fact[N] * Fact[N]).inv();
    for(int i=N; i>=1; i--) InvFactSq[i-1] = InvFactSq[i] * Modint::raw(i) * Modint::raw(i);
    vector<Modint> ans(N+1);
    for(int a=1; a*3<=N; a++) for(int b=a; a+b+b<=N; b++) for(int c=b; a+b+c<=N; c++){
        int n = a + b + c;
        Modint q = Modint(c-b+1) * Modint(b-a+1) * Modint(c-a+2);
        Modint x = InvFactSq[a] * InvFactSq[b+1] * InvFactSq[c+2] * Fact[n] * Fact[n] * q * q;
        ans[n] += powK[c] * x;
    }
    cout << N << '\n';
    rep(i,N){
        if(i) cout << ' ';
        cout << ans[i+1].val();
    } cout << '\n';
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    #ifdef NACHIA
    int T; cin >> T; for(int t=0; t<T; T!=++t?(cout<<'\n'),0:0)
    #endif
    testcase();
    return 0;
}
0