結果

問題 No.1299 Random Array Score
ユーザー kakel-sankakel-san
提出日時 2024-09-01 16:48:38
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 17,522 ms
コンパイル使用メモリ 168,716 KB
実行使用メモリ 201,964 KB
最終ジャッジ日時 2024-09-01 16:49:01
合計ジャッジ時間 13,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,208 KB
testcase_01 AC 58 ms
30,720 KB
testcase_02 AC 56 ms
30,208 KB
testcase_03 AC 93 ms
56,112 KB
testcase_04 AC 93 ms
55,612 KB
testcase_05 AC 88 ms
51,464 KB
testcase_06 AC 85 ms
49,700 KB
testcase_07 AC 84 ms
50,336 KB
testcase_08 AC 93 ms
55,348 KB
testcase_09 AC 61 ms
31,488 KB
testcase_10 AC 73 ms
41,216 KB
testcase_11 AC 65 ms
33,408 KB
testcase_12 AC 82 ms
48,424 KB
testcase_13 AC 93 ms
55,532 KB
testcase_14 AC 83 ms
48,640 KB
testcase_15 AC 85 ms
49,592 KB
testcase_16 AC 84 ms
49,444 KB
testcase_17 AC 64 ms
34,304 KB
testcase_18 AC 74 ms
42,368 KB
testcase_19 AC 78 ms
43,392 KB
testcase_20 AC 70 ms
37,628 KB
testcase_21 AC 58 ms
31,360 KB
testcase_22 AC 64 ms
35,072 KB
testcase_23 AC 83 ms
49,152 KB
testcase_24 AC 88 ms
51,284 KB
testcase_25 AC 82 ms
48,724 KB
testcase_26 AC 59 ms
31,232 KB
testcase_27 AC 68 ms
36,224 KB
testcase_28 AC 65 ms
33,664 KB
testcase_29 AC 68 ms
36,864 KB
testcase_30 AC 84 ms
48,632 KB
testcase_31 AC 71 ms
36,864 KB
testcase_32 AC 98 ms
54,996 KB
testcase_33 AC 103 ms
66,580 KB
testcase_34 AC 85 ms
43,776 KB
testcase_35 AC 100 ms
66,852 KB
testcase_36 AC 83 ms
201,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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 long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    // static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var a = NList;
        var mod = 998_244_353;
        var ans = a.Sum() % mod;
        WriteLine(ans % mod * Exp(2, k, mod) % mod);
    }
    static long Exp(long n, long p, int mod)
    {
        long _n = n % mod;
        var _p = p;
        var result = 1L;
        if ((_p & 1) == 1) result *= _n;
        while (_p > 0)
        {
            _n = _n * _n % mod;
            _p >>= 1;
            if ((_p & 1) == 1) result = result * _n % mod;
        }
        return result;
    }
}
0