結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | ei1333333 |
提出日時 | 2017-06-09 22:58:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,213 bytes |
コンパイル時間 | 1,656 ms |
コンパイル使用メモリ | 158,816 KB |
実行使用メモリ | 32,640 KB |
最終ジャッジ日時 | 2024-09-22 16:46:46 |
合計ジャッジ時間 | 2,949 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 10 ms
26,828 KB |
testcase_02 | AC | 11 ms
26,752 KB |
testcase_03 | AC | 10 ms
26,880 KB |
testcase_04 | AC | 11 ms
26,840 KB |
testcase_05 | AC | 12 ms
26,880 KB |
testcase_06 | AC | 12 ms
26,832 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 10 ms
26,880 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 | 12 ms
26,836 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 19 ms
27,136 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long int64; string S; int64 dp[1000001][2]; int64 dp2[1000001]; int64 rec2(int idx, const int mod) { if(idx <= 0) return (1); if(idx % 2 == 1) return (rec2(idx - 1, mod) * 10 % mod); if(~dp2[idx]) return (dp2[idx]); return (dp2[idx] = rec2(idx - 2, mod) * 10 % mod); } int64 rec(int idx, bool free, const int mod) { if(~dp[idx][free]) return (dp[idx][free]); if(S.size() / 2 == idx) { if(idx == 0) return (9); if(S.size() % 2 == 1) return (free ? 10 : S[idx] - '0' + 1); else return (1); } int64 ret = 0; int end = free ? 9 : S[idx] - '0'; for(int i = 0; i <= end; i++) { if(idx == 0 && i == 0) continue; bool nt = free | (i != end); if(!nt && S[S.size() - idx - 1] - '0' < i) continue; (ret += rec(idx + 1, free | (i != end), mod)) %= mod; } return (dp[idx][free] = ret); } int64 ct(int mod) { memset(dp, -1, sizeof(dp)); memset(dp2, -1, sizeof(dp2)); int64 ret = 0; for(int i = 0; i < S.size() - 1; i++) { ret += rec2(i - 1, mod) * 9; ret %= mod; } return ((ret + rec(0, 0, mod)) % mod); } int main() { cin >> S; cout << ct(1e9) << endl; cout << ct(1e9 + 7) << endl; }