結果

問題 No.2867 NOT FOUND 404 Again
ユーザー yuusaanyuusaan
提出日時 2024-06-27 21:16:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 2,892 ms
コンパイル使用メモリ 258,928 KB
実行使用メモリ 813,924 KB
最終ジャッジ日時 2024-08-01 13:28:21
合計ジャッジ時間 5,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;

using mint = atcoder::modint998244353;
int main(){
    string n;
    cin >> n;
    int ns = n.size();
    vector<int> digits(ns);
    vector<vector<vector<vector<mint>>>> dp(ns + 1,vector<vector<vector<mint>>> (2,vector<vector<mint>>(10,vector<mint>(4,0))));
    for(int i = 0;i < ns;i++){
        digits[i] = stoi(n.substr(i,1));
    }

    dp[0][0][0][0] = 1;
    for(int i = 0;i < ns;i++){
        for(int k = 0;k < 2;k++){
        
        }
    }
    return 0;
}
0