結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | GOTKAKO |
提出日時 | 2024-08-30 22:21:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,293 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 206,172 KB |
実行使用メモリ | 12,332 KB |
最終ジャッジ日時 | 2024-08-30 22:21:08 |
合計ジャッジ時間 | 5,191 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 91 ms
12,064 KB |
testcase_19 | AC | 420 ms
12,148 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; long long mod = 998244353; //入力が必ず-mod<a<modの時. struct mint{ long long v = 0; mint(){} mint(int a){v = a<0?a+mod:a;} mint(long long a){v = a<0?a+mod:a;} mint(unsigned long long a){v = a;} long long val(){return v;} void modu(){v %= mod;} mint repeat2mint(const long long a,long long b){ mint ret = 1,p = a; while(b){ if(b&1) ret *= p; p *= p; b >>= 1; } return ret; }; mint &operator=(const mint &b) = default; mint operator-() const {return mint(0)-(*this);} mint operator+(const mint b){return mint(v)+=b;} mint operator-(const mint b){return mint(v)-=b;} mint operator*(const mint b){return mint(v)*=b;} mint operator/(const mint b){return mint(v)/=b;} mint operator+=(const mint b){ v += b.v; if(v >= mod) v -= mod; return *this; } mint operator-=(const mint b){ v -= b.v; if(v < 0) v += mod; return *this; } mint operator*=(const mint b){v = v*b.v%mod; return *this;} mint operator/=(mint b){ if(b == 0) assert(false); int left = mod-2; while(left){if(left&1) *this *= b; b *= b; left >>= 1;} return *this; } mint operator++(int){*this += 1; return *this;} mint operator--(int){*this -= 1; return *this;} bool operator==(const mint b){return v == b.v;} bool operator!=(const mint b){return v != b.v;} bool operator>(const mint b){return v > b.v;} bool operator>=(const mint b){return v >= b.v;} bool operator<(const mint b){return v < b.v;} bool operator<=(const mint b){return v <= b.v;} mint pow(const long long x){return repeat2mint(v,x);} mint inv(){return mint(1)/v;} }; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); string s; cin >> s; int N = s.size(); if(N < 3){cout << s << endl; return 0;} bool Nng = false; vector<mint> p10(N,1); for(int i=1; i<N; i++) p10.at(i) = p10.at(i-1)*10; vector<mint> alive(3); for(int i=0; i<N-1; i++){ vector<mint> next(3); next.at(0) = alive.at(0)*9+alive.at(1)*8+alive.at(2)*9; next.at(1) = alive.at(0)+alive.at(1); next.at(2) = alive.at(1); swap(alive,next); if(i > 3 && s.at(i-3) == '4' && s.at(i-2) == '0' && s.at(i-1) == '4') Nng = true; if(Nng) continue; int limit = (s.at(i)-'0')*10; bool four = false,zerofour = false; if(i > 2 && s.at(i-2) == '4' && s.at(i-1) == '0') four = true; if(i > 1 && s.at(i-1) == '4') four = zerofour = true; for(int k=0; k<limit; k++){ if(four && 40 <= k && k <= 49) continue; if(zerofour && k == 4) continue; if(k == 40) alive.at(2)++; else if(k%10 == 4) alive.at(1)++; else alive.at(0)++; } } if(N > 3 && s.at(N-4) == '4' && s.at(N-3) == '0' && s.at(N-2) == '4') Nng = true; mint answer = 0; if(Nng == false){ for(char i='0'; i<=s.at(N-1); i++){ if(s.at(N-3) == '4' && s.at(N-2) == '0' && i == '4') continue; answer++; } } for(auto &a : alive) answer += a; answer--; cout << answer.v << endl; }