結果

問題 No.840 ほむほむほむら
ユーザー tempura_pptempura_pp
提出日時 2019-06-12 03:23:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 581 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 65,772 KB
実行使用メモリ 350,884 KB
最終ジャッジ日時 2024-10-08 07:47:50
合計ジャッジ時間 20,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 113 ms
211,840 KB
testcase_11 AC 137 ms
220,032 KB
testcase_12 AC 42 ms
87,340 KB
testcase_13 AC 407 ms
315,508 KB
testcase_14 AC 395 ms
338,840 KB
testcase_15 TLE -
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
using ll = long long;
const ll mod=998244353 ;


ll dp[202020][6][6][6];
int main(){
    int n,t;
    cin>>n>>t;
    dp[0][0][0][0]=1;
    rep(i,n)rep(j,t)rep(k,t)rep(l,t){
        dp[i][j][k][l]%=mod;
        dp[i+1][j][k][(k+l)%t]+=dp[i][j][k][l];
        dp[i+1][j][(j+k)%t][l]+=dp[i][j][k][l];
        dp[i+1][(j+1)%t][k][l]+=dp[i][j][k][l];
    }
    ll ans = 0;
    rep(i,t)rep(j,t)ans += dp[n][i][j][0];
    cout<<ans%mod<<endl;
    return 0;
}
0