結果

問題 No.1299 Random Array Score
ユーザー bluemeganebluemegane
提出日時 2021-04-21 07:21:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 1,754 ms
コンパイル使用メモリ 109,816 KB
実行使用メモリ 49,716 KB
最終ジャッジ日時 2024-07-04 05:53:37
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,420 KB
testcase_01 AC 30 ms
24,772 KB
testcase_02 AC 31 ms
24,416 KB
testcase_03 AC 109 ms
45,604 KB
testcase_04 AC 106 ms
45,224 KB
testcase_05 AC 93 ms
43,096 KB
testcase_06 AC 86 ms
41,936 KB
testcase_07 AC 89 ms
42,540 KB
testcase_08 AC 103 ms
43,388 KB
testcase_09 AC 36 ms
27,396 KB
testcase_10 AC 60 ms
32,692 KB
testcase_11 AC 41 ms
28,120 KB
testcase_12 AC 82 ms
41,860 KB
testcase_13 AC 104 ms
45,156 KB
testcase_14 AC 86 ms
37,836 KB
testcase_15 AC 87 ms
40,096 KB
testcase_16 AC 83 ms
42,072 KB
testcase_17 AC 43 ms
26,588 KB
testcase_18 AC 62 ms
30,996 KB
testcase_19 AC 68 ms
31,680 KB
testcase_20 AC 52 ms
29,004 KB
testcase_21 AC 36 ms
23,096 KB
testcase_22 AC 45 ms
25,572 KB
testcase_23 AC 83 ms
37,728 KB
testcase_24 AC 90 ms
42,932 KB
testcase_25 AC 84 ms
41,912 KB
testcase_26 AC 35 ms
25,176 KB
testcase_27 AC 45 ms
26,620 KB
testcase_28 AC 42 ms
26,208 KB
testcase_29 AC 48 ms
27,480 KB
testcase_30 AC 84 ms
41,624 KB
testcase_31 AC 48 ms
27,492 KB
testcase_32 AC 105 ms
43,032 KB
testcase_33 AC 124 ms
49,716 KB
testcase_34 AC 84 ms
39,400 KB
testcase_35 AC 122 ms
49,576 KB
testcase_36 AC 84 ms
37,492 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 = 998244353;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var k = long.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var asum = 0L;
        for (int i = 0; i < n; i++)
        {
            asum += long.Parse(line[i]);
            asum %= MOD;
        }
        getAns(k, asum);
    }
    static void getAns(long k, long asum  )
    {
        var ans = BigInteger.ModPow(2, k, MOD);
        ans *= asum;
        ans %= MOD;
        Console.WriteLine(ans);
    }
}
0