結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | nebukuro09 |
提出日時 | 2017-06-09 23:15:51 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,176 bytes |
コンパイル時間 | 812 ms |
コンパイル使用メモリ | 109,796 KB |
実行使用メモリ | 40,668 KB |
最終ジャッジ日時 | 2024-06-12 19:51:59 |
合計ジャッジ時間 | 3,395 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,888 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio; long solve(string N, long M) { long ans = 0; auto KK = N.length.to!int; for (int K = N.to!string.length.to!int; K > 0; K--) { auto dp = new long[][][](K/2+K%2+1, 2, 2); dp[0][0][1] = 1; foreach (i; 0..K/2+K%2) { foreach (j; 0..2) { foreach (h; 0..2) { int d = K == KK ? N[i+KK-K] - '0' : 9; foreach (k; 0..d+1) { if (i == 0 && k == 0) continue; (dp[i+1][j || (k < d)][h && d <= N[$-i-1] - '0'] += dp[i][j][h]) %= M; } } } } foreach (j; 0..2) { foreach (k; 0..2) { if (K == KK && j == 0 && k == 0) continue; (ans += dp[K/2+K%2][j][k]) %= M; } } //ans.writeln; } return ans; } void main() { auto N = readln.chomp; solve(N, 10^^9).writeln; solve(N, 10^^9+7).writeln; }