結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー 👑 NachiaNachia
提出日時 2021-03-05 22:40:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 751 bytes
コンパイル時間 4,172 ms
コンパイル使用メモリ 261,440 KB
実行使用メモリ 15,516 KB
最終ジャッジ日時 2024-10-07 03:27:32
合計ジャッジ時間 5,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
15,372 KB
testcase_01 AC 5 ms
15,376 KB
testcase_02 AC 6 ms
15,368 KB
testcase_03 AC 6 ms
15,372 KB
testcase_04 AC 6 ms
15,368 KB
testcase_05 AC 6 ms
15,500 KB
testcase_06 WA -
testcase_07 AC 6 ms
15,324 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 6 ms
15,344 KB
testcase_11 AC 6 ms
15,500 KB
testcase_12 AC 6 ms
15,400 KB
testcase_13 AC 6 ms
15,372 KB
testcase_14 AC 6 ms
15,496 KB
testcase_15 AC 6 ms
15,372 KB
testcase_16 WA -
testcase_17 AC 6 ms
15,372 KB
testcase_18 AC 6 ms
15,500 KB
testcase_19 AC 6 ms
15,376 KB
testcase_20 AC 6 ms
15,372 KB
testcase_21 AC 5 ms
15,372 KB
testcase_22 AC 6 ms
15,372 KB
testcase_23 WA -
testcase_24 AC 6 ms
15,312 KB
testcase_25 WA -
testcase_26 AC 6 ms
15,368 KB
testcase_27 AC 6 ms
15,372 KB
testcase_28 WA -
testcase_29 AC 6 ms
15,376 KB
testcase_30 AC 9 ms
15,372 KB
testcase_31 AC 8 ms
15,368 KB
testcase_32 AC 12 ms
15,372 KB
testcase_33 AC 18 ms
15,496 KB
testcase_34 AC 35 ms
15,504 KB
testcase_35 AC 34 ms
15,516 KB
testcase_36 AC 34 ms
15,500 KB
testcase_37 AC 43 ms
15,444 KB
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

using mll=atcoder::static_modint<1000000007>;

string N;
mll dp1[10001][100];
mll dp[10001][100];
mll dpf[10001][100];

int main(){
  cin>>N;
  int n=N.size();
  rep(i,n+1) rep(j,100) dp1[i][j]=dp[i][j]=dpf[i][j]=0;

  mll ans=0;

  dp1[0][1]=1;
  rep(i,n-1){
    for(int x=1; x<=9; x++) rep(t,100) dp1[i+1][t*x%100]+=dp1[i][t];
    ans+=dp1[i+1][0];
  }

  dpf[0][1]=1;
  rep(i,n){
    int d=N[n-1-i]-'0';
    if(d!=0) rep(t,100) dp[i+1][t*d%100]+=dp[i][t];
    for(int x=1; x<d; x++) rep(t,100) dp[i+1][t*x%100]+=dp1[i][t];
  }
  ans+=dp[n][0];
  printf("%u\n",ans.val());
  return 0;
}
0