結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | imulan |
提出日時 | 2017-06-10 00:25:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,565 bytes |
コンパイル時間 | 1,493 ms |
コンパイル使用メモリ | 167,644 KB |
実行使用メモリ | 12,376 KB |
最終ジャッジ日時 | 2024-09-22 21:08:33 |
合計ジャッジ時間 | 2,816 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
7,236 KB |
testcase_01 | AC | 7 ms
7,292 KB |
testcase_02 | AC | 7 ms
7,400 KB |
testcase_03 | AC | 7 ms
7,552 KB |
testcase_04 | AC | 7 ms
7,424 KB |
testcase_05 | AC | 7 ms
7,364 KB |
testcase_06 | WA | - |
testcase_07 | AC | 7 ms
7,372 KB |
testcase_08 | AC | 7 ms
7,216 KB |
testcase_09 | AC | 7 ms
7,364 KB |
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 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 8 ms
7,424 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 18 ms
12,232 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second #define dbg(x) cout<<#x" = "<<((x))<<endl template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;} template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;} const int PW = 100001; ll pw[PW]; string n; int N; ll mod; ll dp[PW][2][2]; ll dfs(int d, int s, int f) { if(d == (N+1)/2) { if(f==1 && s==0) return 0; else return 1; } if(dp[d][s][f]>=0) return dp[d][s][f]; ll ret = 0; int l=0; if(d==0) l=1; int r=9; if(s==0) r=n[d]-'0'; for(int i=l; i<=r; ++i) { if(s==0) { int nf = 0; if(i>n[N-1-d]-'0') nf=1; int ns=0; if(i<n[d]-'0') ns = 1; else if(i<n[N-1-d]-'0') ns = 1; ret += dfs(d+1,ns,f|nf); } else ret += dfs(d+1,1,f); ret %= mod; } return dp[d][s][f] = ret; } ll solve() { pw[0]=1; for(int i=1; i<PW; ++i) pw[i] = (pw[i-1]*10)%mod; ll ans = 0; for(int i=1; i<N; ++i) (ans+=9*pw[(i-1)/2])%=mod; memset(dp,-1,sizeof(dp)); ans += dfs(0,0,0); return ans%mod; } int main() { cin >>n; N = n.size(); mod = 1e9; cout << solve() << endl; mod += 7; cout << solve() << endl; return 0; }