結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-05 20:05:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,247 bytes
コンパイル時間 5,795 ms
コンパイル使用メモリ 313,844 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 15:29:53
合計ジャッジ時間 10,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 RE -
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
6,944 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,944 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 RE -
testcase_24 AC 2 ms
6,944 KB
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
testcase_31 AC 3 ms
6,944 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 WA -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:49:11: warning: 'tb' may be used uninitialized [-Wmaybe-uninitialized]
   49 |   if(ta==2&&tb==2&&ok)ans++;
      |      ~~~~~^~~~~~~
main.cpp:19:34: note: 'tb' was declared here
   19 |   vc dp(3,vc<mint>(3,0)); int ta,tb;bool ok=true,fir=true;
      |                                  ^~
main.cpp:49:3: warning: 'ta' may be used uninitialized [-Wmaybe-uninitialized]
   49 |   if(ta==2&&tb==2&&ok)ans++;
      |   ^~
main.cpp:19:31: note: 'ta' was declared here
   19 |   vc dp(3,vc<mint>(3,0)); int ta,tb;bool ok=true,fir=true;
      |                               ^~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<ll,ll>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<(ll)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  sr s;cin>>s;
  vc dp(3,vc<mint>(3,0)); int ta,tb;bool ok=true,fir=true;
  for(char c:s){
    int x=c-'0';
    vc pre(3,vc<mint>(3,0)); swap(pre,dp);
    if(x==0)ok=false;
   
    if(!fir){
      dp[0][0]+=4;
      dp[1][0]+=2; dp[0][1]++;
      dp[2][0]+=2;
    }
    if(ok)for(int i=1;i<x;i++){
      int a=ta,b=tb;
      if(i==2||i==6)a++; if(i==5)b++; if(i==4||i==8)a+=2;
      a=min(a,2); b=min(b,2);
      dp[a][b]++;
    }
    rep(i,3)rep(j,3){
      for(int t=1;t<10;t++){
        int ni=i,nj=j;
        if(t==2||t==6)ni++; if(t==5)nj++; if(t==4||t==8)ni+=2;
        ni=min(ni,2); nj=min(nj,2);
        dp[ni][nj]+=pre[i][j];
      }
    }
    fir=false;
    if(x==2||x==6)ta++; if(x==5)tb++; if(x==4||x==8)ta+=2;
    ta=min(ta,2); tb=min(tb,2);
  }
  mint ans=dp[2][2];
  if(ta==2&&tb==2&&ok)ans++;
  cout<<ans.val();
}
      
  
0