結果

問題 No.1407 Kindness
ユーザー kakel-sankakel-san
提出日時 2024-07-15 23:02:15
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 7,721 ms
コンパイル使用メモリ 166,088 KB
実行使用メモリ 183,084 KB
最終ジャッジ日時 2024-07-15 23:02:28
合計ジャッジ時間 10,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
26,616 KB
testcase_01 AC 44 ms
27,136 KB
testcase_02 AC 43 ms
26,880 KB
testcase_03 AC 43 ms
27,136 KB
testcase_04 AC 43 ms
27,136 KB
testcase_05 AC 42 ms
26,880 KB
testcase_06 AC 42 ms
27,136 KB
testcase_07 AC 41 ms
26,880 KB
testcase_08 AC 45 ms
27,136 KB
testcase_09 AC 44 ms
27,008 KB
testcase_10 AC 44 ms
26,848 KB
testcase_11 AC 45 ms
26,744 KB
testcase_12 AC 60 ms
28,672 KB
testcase_13 AC 47 ms
27,648 KB
testcase_14 AC 44 ms
28,032 KB
testcase_15 AC 47 ms
28,800 KB
testcase_16 AC 47 ms
28,000 KB
testcase_17 AC 46 ms
28,032 KB
testcase_18 AC 56 ms
27,776 KB
testcase_19 AC 47 ms
28,292 KB
testcase_20 AC 48 ms
28,160 KB
testcase_21 AC 46 ms
29,336 KB
testcase_22 AC 43 ms
27,264 KB
testcase_23 AC 46 ms
28,416 KB
testcase_24 AC 48 ms
28,800 KB
testcase_25 AC 46 ms
27,520 KB
testcase_26 AC 47 ms
27,904 KB
testcase_27 AC 45 ms
27,264 KB
testcase_28 AC 48 ms
28,544 KB
testcase_29 AC 42 ms
27,008 KB
testcase_30 AC 46 ms
28,404 KB
testcase_31 AC 44 ms
27,520 KB
testcase_32 AC 59 ms
28,544 KB
testcase_33 AC 45 ms
27,516 KB
testcase_34 AC 48 ms
28,160 KB
testcase_35 AC 45 ms
27,648 KB
testcase_36 AC 55 ms
27,008 KB
testcase_37 AC 49 ms
183,084 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (104 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = ReadLine();
        WriteLine(Kind(n));
    }
    static long Kind(string n)
    {
        var mod = 1_000_000_007;
        var dp1 = new long[n.Length];
        dp1[0] = (n[0] - '1') * (n[0] - '0') / 2;
        var dp2 = (long)(n[0] - '0');
        for (var i = 1; i < n.Length; ++i)
        {
            dp1[i] = ((1 + dp1[i - 1]) * 45 + dp2 * ((n[i] - '1') * (n[i] - '0') / 2)) % mod;
            dp2 = dp2 * (n[i] - '0') % mod;
        }
        return (dp1[^1] + dp2) % mod;
    }
}
0