結果

問題 No.797 Noelちゃんとピラミッド
ユーザー keymoonkeymoon
提出日時 2019-03-15 21:50:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,413 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 110,384 KB
実行使用メモリ 35,560 KB
最終ジャッジ日時 2024-07-01 20:49:35
合計ジャッジ時間 9,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,280 KB
testcase_01 AC 29 ms
25,132 KB
testcase_02 AC 29 ms
27,144 KB
testcase_03 AC 136 ms
33,520 KB
testcase_04 AC 135 ms
33,152 KB
testcase_05 AC 135 ms
35,560 KB
testcase_06 AC 136 ms
35,324 KB
testcase_07 AC 136 ms
35,472 KB
testcase_08 AC 137 ms
33,516 KB
testcase_09 AC 136 ms
33,388 KB
testcase_10 AC 137 ms
33,132 KB
testcase_11 AC 136 ms
33,016 KB
testcase_12 AC 136 ms
33,164 KB
testcase_13 AC 136 ms
35,348 KB
testcase_14 AC 137 ms
35,076 KB
testcase_15 AC 138 ms
33,016 KB
testcase_16 AC 137 ms
35,344 KB
testcase_17 AC 136 ms
35,084 KB
testcase_18 AC 136 ms
33,020 KB
testcase_19 AC 136 ms
35,312 KB
testcase_20 AC 137 ms
33,264 KB
testcase_21 AC 137 ms
35,328 KB
testcase_22 AC 137 ms
33,016 KB
testcase_23 AC 107 ms
31,804 KB
testcase_24 AC 56 ms
27,056 KB
testcase_25 AC 96 ms
32,664 KB
testcase_26 AC 92 ms
32,156 KB
testcase_27 AC 133 ms
33,028 KB
testcase_28 AC 124 ms
34,664 KB
testcase_29 AC 46 ms
24,372 KB
testcase_30 AC 57 ms
26,860 KB
testcase_31 AC 107 ms
31,792 KB
testcase_32 AC 64 ms
28,388 KB
testcase_33 AC 93 ms
30,288 KB
testcase_34 AC 76 ms
30,504 KB
testcase_35 AC 136 ms
33,144 KB
testcase_36 AC 45 ms
26,412 KB
testcase_37 AC 122 ms
32,668 KB
testcase_38 AC 126 ms
32,876 KB
testcase_39 AC 92 ms
30,512 KB
testcase_40 AC 45 ms
26,148 KB
testcase_41 AC 51 ms
26,672 KB
testcase_42 AC 91 ms
32,228 KB
testcase_43 AC 29 ms
25,136 KB
testcase_44 AC 29 ms
25,008 KB
testcase_45 AC 29 ms
27,276 KB
testcase_46 AC 29 ms
25,012 KB
testcase_47 AC 29 ms
27,180 KB
testcase_48 AC 29 ms
25,268 KB
testcase_49 AC 29 ms
25,260 KB
testcase_50 AC 28 ms
23,096 KB
testcase_51 AC 29 ms
25,132 KB
testcase_52 AC 28 ms
25,228 KB
testcase_53 AC 28 ms
25,000 KB
testcase_54 AC 28 ms
23,220 KB
testcase_55 AC 30 ms
25,004 KB
testcase_56 AC 29 ms
25,132 KB
testcase_57 AC 29 ms
25,260 KB
testcase_58 AC 29 ms
25,004 KB
testcase_59 AC 28 ms
25,264 KB
testcase_60 AC 29 ms
25,132 KB
testcase_61 AC 29 ms
23,096 KB
testcase_62 AC 30 ms
25,260 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.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Numerics;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using System.Runtime.CompilerServices;


static class P
{
    static void Main()
    {
        int n = int.Parse(Console.ReadLine().Trim());
        var a = Console.ReadLine().Trim().Split().Select(long.Parse).ToList();
        //var a = Enumerable.Range(0, n).ToList();
        if (a.Count != n) throw new Exception();
        long res = a[0];
        long mul = 1;
        for (int i = 1; i < a.Count; i++)
        {
            mul = ((mul * (n - i)) % 1000000007) * Power(i, 1000000007 - 2);
            mul %= 1000000007;
            //Console.WriteLine(mul);
            res += mul * a[i];
            res %= 1000000007;
        }
        Console.WriteLine(res);
    }

    static long Power(long n, long m)
    {
        const int mod = 1000000007;
        long pow = n;
        long res = 1;
        while (m > 0)
        {
            if ((m & 1) == 1) res = (res * pow) % mod;
            pow = (pow * pow) % mod;
            m >>= 1;
        }
        return res;
    }
}
0