結果

問題 No.372 It's automatic
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2016-05-14 02:39:42
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,192 ms / 6,000 ms
コード長 2,129 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 116,488 KB
実行使用メモリ 25,780 KB
最終ジャッジ日時 2024-10-05 21:59:28
合計ジャッジ時間 31,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,772 KB
testcase_01 AC 23 ms
23,864 KB
testcase_02 AC 22 ms
23,720 KB
testcase_03 AC 22 ms
23,544 KB
testcase_04 AC 2,102 ms
23,996 KB
testcase_05 AC 2,144 ms
23,996 KB
testcase_06 AC 2,140 ms
23,604 KB
testcase_07 AC 2,169 ms
23,856 KB
testcase_08 AC 2,192 ms
23,732 KB
testcase_09 AC 2,117 ms
23,736 KB
testcase_10 AC 2,121 ms
23,852 KB
testcase_11 AC 2,084 ms
23,732 KB
testcase_12 AC 2,100 ms
23,480 KB
testcase_13 AC 2,104 ms
23,720 KB
testcase_14 AC 2,090 ms
23,864 KB
testcase_15 AC 2,123 ms
23,988 KB
testcase_16 AC 25 ms
23,720 KB
testcase_17 AC 23 ms
25,780 KB
testcase_18 AC 21 ms
23,724 KB
testcase_19 AC 21 ms
23,608 KB
testcase_20 AC 22 ms
23,588 KB
testcase_21 AC 856 ms
23,740 KB
testcase_22 AC 878 ms
23,864 KB
testcase_23 AC 867 ms
23,860 KB
testcase_24 AC 887 ms
23,600 KB
testcase_25 AC 856 ms
23,848 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 uint[20050];
            var next = new uint[20050];
            var ans = 0u;
            var ten = new int[20050];
            for (int i = 0; i < m; i++)
                ten[i] = (i * 10) % m;
            const int MOD = 1000000007;
            if (m < 20)
            {
                foreach (var x in s)
                {
                    var v = x - '0';
                    Buffer.BlockCopy(dp, 0, next, 0, sizeof(uint) * 20050);
                    if (v > 0) next[v % m]++;
                    else ans++;
                    for (int j = 0; j < m; j++)
                    {
                        var to = ten[j] + v;
                        if (to >= m) to %= m;
                        if ((next[to] += dp[j]) >= MOD) next[to] -= MOD;
                    }
                    Swap(ref dp, ref next);
                }
            }
            else
            {
                foreach (var x in s)
                {
                    var v = x - '0';
                    Buffer.BlockCopy(dp, 0, next, 0, sizeof(uint) * 20050);
                    if (v > 0) next[v % m]++;
                    else ans++;
                    for (int j = 0; j < 20050; j++)
                    {
                        var to = ten[j] + v;
                        if (to >= m) to -= m;
                        if ((next[to] += dp[j]) >= MOD) next[to] -= 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