結果

問題 No.1102 Remnants
ユーザー eSeFeSeF
提出日時 2020-07-03 16:25:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 1,949 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 114,760 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-09-16 17:07:41
合計ジャッジ時間 6,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
23,216 KB
testcase_01 AC 30 ms
23,476 KB
testcase_02 AC 29 ms
25,016 KB
testcase_03 AC 30 ms
27,436 KB
testcase_04 AC 30 ms
25,516 KB
testcase_05 AC 296 ms
43,356 KB
testcase_06 AC 79 ms
28,644 KB
testcase_07 AC 379 ms
53,432 KB
testcase_08 AC 39 ms
26,036 KB
testcase_09 AC 47 ms
26,292 KB
testcase_10 AC 37 ms
25,648 KB
testcase_11 AC 44 ms
28,336 KB
testcase_12 AC 50 ms
28,364 KB
testcase_13 AC 50 ms
28,468 KB
testcase_14 AC 179 ms
30,356 KB
testcase_15 AC 145 ms
31,332 KB
testcase_16 AC 332 ms
45,652 KB
testcase_17 AC 317 ms
44,824 KB
testcase_18 AC 326 ms
48,052 KB
testcase_19 AC 130 ms
31,224 KB
testcase_20 AC 64 ms
28,860 KB
testcase_21 AC 214 ms
40,920 KB
testcase_22 AC 284 ms
43,860 KB
testcase_23 AC 230 ms
41,652 KB
testcase_24 AC 168 ms
32,940 KB
testcase_25 AC 343 ms
53,172 KB
testcase_26 AC 52 ms
26,284 KB
testcase_27 AC 110 ms
28,420 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;
class AC
{
    static void Main()
    {
        var (N, K) = Csin.Input<int, long>();
        var A = Console.ReadLine().Split().Select(long.Parse).ToArray();
        const int MOD = (int)1e9 + 7;
        long modpow(long x, int n)
        {
            if (n == 0) return 1L;
            return n % 2 == 0 ? modpow((x * x) % MOD, n / 2) % MOD : (x * modpow(x, n - 1)) % MOD;
        }
        var comb = new long[N];
        comb[0] = 1;
        for (var i = 1; i < N; i++) comb[i] = ((comb[i - 1] * (K + i)) % MOD * modpow(i, MOD - 2)) % MOD;
        long ans = 0;
        for (var i = 0; i < N; i++)
        {
            ans += ((comb[i] * comb[N - 1 - i]) % MOD * A[i]) % MOD;
            ans %= MOD;
        }
        Console.WriteLine(ans);
    }
}
static class Csin
{
    public static string[] StrArray() => Console.ReadLine().Split();
    public static string[] StrArray(char separator) => Console.ReadLine().Split(separator);

    private static T Conv<T>(string value) => (T)Convert.ChangeType(value, typeof(T));
    public static (T, U) ReadTuple<T, U>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]));
    public static (T, U, V) ReadTuple<T, U, V>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]), Conv<V>(input[2]));
    public static (T, U, V, W) ReadTuple<T, U, V, W>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]), Conv<V>(input[2]), Conv<W>(input[3]));
    public static (T, U, V, W, X) ReadTuple<T, U, V, W, X>(string[] input) => (Conv<T>(input[0]), Conv<U>(input[1]), Conv<V>(input[2]), Conv<W>(input[3]), Conv<X>(input[4]));

    public static (T, U) Input<T, U>() => ReadTuple<T, U>(StrArray());
    public static (T, U, V) Input<T, U, V>() => ReadTuple<T, U, V>(StrArray());
    public static (T, U, V, W) Input<T, U, V, W>() => ReadTuple<T, U, V, W>(StrArray());
    public static (T, U, V, W, X) Input<T, U, V, W, X>() => ReadTuple<T, U, V, W, X>(StrArray());
}
0