結果

問題 No.1681 +-*
ユーザー bluemeganebluemegane
提出日時 2021-09-18 10:29:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 3,891 ms
コンパイル使用メモリ 110,752 KB
実行使用メモリ 46,680 KB
最終ジャッジ日時 2024-06-30 07:38:15
合計ジャッジ時間 7,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,244 KB
testcase_01 AC 27 ms
26,284 KB
testcase_02 AC 32 ms
24,728 KB
testcase_03 AC 31 ms
24,428 KB
testcase_04 AC 31 ms
26,612 KB
testcase_05 AC 170 ms
39,688 KB
testcase_06 AC 171 ms
41,988 KB
testcase_07 AC 168 ms
39,672 KB
testcase_08 AC 186 ms
44,488 KB
testcase_09 AC 187 ms
44,492 KB
testcase_10 AC 183 ms
46,672 KB
testcase_11 AC 186 ms
46,680 KB
testcase_12 AC 185 ms
44,104 KB
testcase_13 AC 104 ms
31,928 KB
testcase_14 AC 183 ms
46,548 KB
testcase_15 AC 26 ms
24,304 KB
testcase_16 AC 26 ms
24,240 KB
testcase_17 AC 186 ms
44,632 KB
testcase_18 AC 188 ms
44,104 KB
testcase_19 AC 186 ms
46,660 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Numerics;
using System;

public class Hello
{
    public static int MOD = 1000000007;
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, a);
    }
    static void getAns(int n, int[] a)
    {
        var ans = 0L;
        var t = 1L;
        for (int i = 0; i < n; i++)
        {
            t *= a[i];
            t %= MOD;
            long t2;
            if (n - 2 - i < 0) t2 = 1L;
            else
            {
                t2 = (long)BigInteger.ModPow(3, n - 2 - i, MOD) * 2L;
                t2 %= MOD;
            }
            t2 *= t;
            t2 %= MOD;
            ans += t2;
            ans %= MOD;
        }
        Console.WriteLine(ans);
    }
}
0