結果

問題 No.260 世界のなんとか3
ユーザー beetbeet
提出日時 2018-12-05 14:58:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,075 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 203,952 KB
実行使用メモリ 12,296 KB
最終ジャッジ日時 2024-07-19 02:10:36
合計ジャッジ時間 4,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,952 KB
testcase_01 AC 5 ms
10,880 KB
testcase_02 AC 4 ms
11,008 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 21 ms
11,360 KB
testcase_06 WA -
testcase_07 AC 44 ms
12,164 KB
testcase_08 AC 45 ms
12,028 KB
testcase_09 AC 24 ms
11,628 KB
testcase_10 AC 41 ms
12,024 KB
testcase_11 AC 48 ms
12,160 KB
testcase_12 AC 38 ms
11,888 KB
testcase_13 AC 12 ms
11,264 KB
testcase_14 AC 45 ms
12,160 KB
testcase_15 WA -
testcase_16 AC 37 ms
11,768 KB
testcase_17 AC 28 ms
11,520 KB
testcase_18 AC 26 ms
11,632 KB
testcase_19 AC 45 ms
12,024 KB
testcase_20 AC 31 ms
11,632 KB
testcase_21 AC 30 ms
11,632 KB
testcase_22 AC 36 ms
11,768 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 48 ms
12,156 KB
testcase_26 AC 49 ms
12,160 KB
testcase_27 AC 6 ms
11,008 KB
testcase_28 AC 50 ms
12,288 KB
testcase_29 AC 50 ms
12,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


template<typename T,T MOD = 1000000007>
struct Mint{
  T v;
  Mint():v(0){}
  Mint(signed v):v(v){}
  Mint(long long t){v=t%MOD;if(v<0) v+=MOD;}

  Mint pow(long long k){
    Mint res(1),tmp(v);
    while(k){
      if(k&1) res*=tmp;
      tmp*=tmp;
      k>>=1;
    }
    return res;
  }
  
  Mint inv(){return pow(MOD-2);}
  
  Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;}
  Mint& operator/=(Mint a){return (*this)*=a.inv();}
  
  Mint operator+(Mint a) const{return Mint(v)+=a;};
  Mint operator-(Mint a) const{return Mint(v)-=a;};
  Mint operator*(Mint a) const{return Mint(v)*=a;};
  Mint operator/(Mint a) const{return Mint(v)/=a;};

  Mint operator-(){return v?MOD-v:v;}

  bool operator==(const Mint a)const{return v==a.v;}
  bool operator!=(const Mint a)const{return v!=a.v;}
  bool operator <(const Mint a)const{return v <a.v;}

};
//INSERT ABOVE HERE
using M = Mint<int>;
const int MAX = 1e4 + 100;
M dp[2][2][3][8][MAX];
int used[2][2][3][8][MAX];
M dfs(string &s,int i,int t,int a,int x,int y){
  M &res=dp[t][a][x][y][i];
  if(i==0) return res=(a||(x==0))&&(y!=0);
  if(!t&&used[t][a][x][y][i]) return res;
  used[t][a][x][y][i]=1;
  res=M(0);
  for(int k=0;k<=(t?s[i-1]-'0':9);k++)
    res+=dfs(s,i-1,t&&(k==s[i-1]-'0'),a||(k==3),(x*10+k)%3,(y*10+k)%8);
  return res;
}

signed main(){
  string a,b;
  cin>>a>>b;
  reverse(a.begin(),a.end());
  reverse(b.begin(),b.end());
  M ans;
  memset(used,0,sizeof(used));
  ans+=dfs(b,b.size(),1,0,0,0);
  ans-=dfs(a,a.size(),1,0,0,0);
  
  int flg=0,m3=0,m8=0;
  for(int i=0;i<(int)a.size();i++){
    flg|=a[i]=='3';
    m3=(m3*10+(a[i]-'0'))%3;
    m8=(m8*10+(a[i]-'0'))%8;
  }
  if((flg||!m3)&&m8) ans+=M(1);
  cout<<ans.v<<endl;
  return 0;
}
0