結果

問題 No.372 It's automatic
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2016-05-14 01:57:33
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,284 ms / 6,000 ms
コード長 2,108 bytes
コンパイル時間 955 ms
コンパイル使用メモリ 111,900 KB
実行使用メモリ 26,716 KB
最終ジャッジ日時 2024-10-05 21:34:25
合計ジャッジ時間 29,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,652 KB
testcase_01 AC 21 ms
24,544 KB
testcase_02 AC 21 ms
26,436 KB
testcase_03 AC 22 ms
26,432 KB
testcase_04 AC 2,241 ms
24,420 KB
testcase_05 AC 2,276 ms
26,704 KB
testcase_06 AC 2,276 ms
24,540 KB
testcase_07 AC 2,268 ms
24,420 KB
testcase_08 AC 2,284 ms
26,588 KB
testcase_09 AC 2,264 ms
26,572 KB
testcase_10 AC 2,259 ms
22,580 KB
testcase_11 AC 2,242 ms
24,536 KB
testcase_12 AC 2,255 ms
26,716 KB
testcase_13 AC 2,269 ms
26,712 KB
testcase_14 AC 2,255 ms
24,540 KB
testcase_15 AC 2,267 ms
22,704 KB
testcase_16 AC 23 ms
24,672 KB
testcase_17 AC 22 ms
24,528 KB
testcase_18 AC 22 ms
24,652 KB
testcase_19 AC 22 ms
24,548 KB
testcase_20 AC 22 ms
24,624 KB
testcase_21 AC 166 ms
26,452 KB
testcase_22 AC 175 ms
24,544 KB
testcase_23 AC 183 ms
24,756 KB
testcase_24 AC 186 ms
26,700 KB
testcase_25 AC 184 ms
22,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Diagnostics;
using System.Collections.Generic;
using Debug = System.Diagnostics.Debug;
using StringBuilder = System.Text.StringBuilder;
using System.Numerics;
using Number = System.Int64;
using Point = System.Numerics.Complex;
namespace Program
{
    public class Solver
    {
        static void Main()
        {
            var s = Console.ReadLine();
            var m = int.Parse(Console.ReadLine());
            var n = s.Length;
            var dp = new int[32768];
            var next = new int[32768];
            int ans = 0;
            var to = new int[10][];
            for (int i = 0; i < 10; i++)
            {
                to[i] = new int[32768];
                for (int j = 0; j < m; j++)
                    to[i][j] = (j * 10 + i) % m;
            }
            const int MOD = 1000000007;
            foreach (var x in s)
            {
                var v = x - '0';
                Buffer.BlockCopy(dp, 0, next, 0, sizeof(int) * 32768);
                if (v > 0) next[v % m]++;
                else ans++;
                for (int j = 0; j < m; j += 8)
                {
                    if ((next[to[v][j]] += dp[j]) >= MOD) next[to[v][j]] -= MOD;
                    if ((next[to[v][j + 1]] += dp[j + 1]) >= MOD) next[to[v][j + 1]] -= MOD;
                    if ((next[to[v][j + 2]] += dp[j + 2]) >= MOD) next[to[v][j + 2]] -= MOD;
                    if ((next[to[v][j + 3]] += dp[j + 3]) >= MOD) next[to[v][j + 3]] -= MOD;
                    if ((next[to[v][j + 4]] += dp[j + 4]) >= MOD) next[to[v][j + 4]] -= MOD;
                    if ((next[to[v][j + 5]] += dp[j + 5]) >= MOD) next[to[v][j + 5]] -= MOD;
                    if ((next[to[v][j + 6]] += dp[j + 6]) >= MOD) next[to[v][j + 6]] -= MOD;
                    if ((next[to[v][j + 7]] += dp[j + 7]) >= MOD) next[to[v][j + 7]] -= MOD;
                }
                Swap(ref dp, ref next);
            }
            Console.WriteLine((dp[0] + ans) % MOD);


        }

        static public void Swap<T>(ref T a, ref T b) { var tmp = a; a = b; b = tmp; }
    }
}
0