結果

問題 No.1407 Kindness
ユーザー kakel-sankakel-san
提出日時 2024-07-15 22:57:09
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 973 bytes
コンパイル時間 7,462 ms
コンパイル使用メモリ 167,912 KB
実行使用メモリ 184,364 KB
最終ジャッジ日時 2024-07-15 22:57:25
合計ジャッジ時間 11,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
26,880 KB
testcase_01 AC 45 ms
27,132 KB
testcase_02 AC 47 ms
27,136 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 45 ms
27,136 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 47 ms
26,740 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 48 ms
27,776 KB
testcase_19 WA -
testcase_20 AC 49 ms
28,288 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 45 ms
27,264 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 50 ms
27,516 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 53 ms
184,364 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 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();
        var mod = 1_000_000_007;
        var dp1 = new long[n.Length];
        dp1[0] = (n[0] - '1') * (n[0] - '0') / 2;
        var dp2 = 1L;
        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;
        }
        WriteLine((dp1[^1] + dp2) % mod);
    }
}
0