結果

問題 No.372 It's automatic
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2016-05-14 01:45:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 3,826 ms / 6,000 ms
コード長 1,476 bytes
コンパイル時間 4,150 ms
コンパイル使用メモリ 109,144 KB
実行使用メモリ 47,456 KB
最終ジャッジ日時 2024-10-05 21:25:57
合計ジャッジ時間 49,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
17,408 KB
testcase_01 AC 20 ms
17,664 KB
testcase_02 AC 19 ms
17,792 KB
testcase_03 AC 20 ms
17,664 KB
testcase_04 AC 3,605 ms
35,388 KB
testcase_05 AC 3,627 ms
43,512 KB
testcase_06 AC 3,639 ms
43,420 KB
testcase_07 AC 3,826 ms
45,496 KB
testcase_08 AC 3,663 ms
45,400 KB
testcase_09 AC 3,721 ms
45,596 KB
testcase_10 AC 3,640 ms
43,640 KB
testcase_11 AC 3,615 ms
43,376 KB
testcase_12 AC 3,741 ms
43,360 KB
testcase_13 AC 3,561 ms
45,552 KB
testcase_14 AC 3,617 ms
45,420 KB
testcase_15 AC 3,588 ms
47,456 KB
testcase_16 AC 22 ms
23,640 KB
testcase_17 AC 21 ms
23,792 KB
testcase_18 AC 21 ms
23,400 KB
testcase_19 AC 21 ms
25,824 KB
testcase_20 AC 21 ms
25,700 KB
testcase_21 AC 174 ms
31,756 KB
testcase_22 AC 180 ms
25,620 KB
testcase_23 AC 177 ms
27,796 KB
testcase_24 AC 172 ms
25,876 KB
testcase_25 AC 178 ms
30,084 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[m];
            int ans = 0;
            var to = new int[10][];
            for (int i = 0; i < 10; i++)
            {
                to[i] = new int[m];
                for (int j = 0; j < m; j++)
                    to[i][j] = (j * 10 + i) % m;
            }
            const int MOD = 1000000007;
            for (int i = 0; i < n; i++)
            {
                var v = s[i] - '0';
                var next = new int[m];
                Buffer.BlockCopy(dp, 0, next, 0, sizeof(int) * m);
                if (v > 0) next[v % m]++;
                else ans += 1;
                for (int j = 0; j < m; j++)
                {
                    next[to[v][j]] += dp[j];
                    if (next[to[v][j]] >= MOD) next[to[v][j]] -= MOD;
                }
                dp = 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