結果

問題 No.1325 Subsequence Score
ユーザー さかぽんさかぽん
提出日時 2020-12-25 22:29:49
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 1,096 ms
コンパイル使用メモリ 112,032 KB
実行使用メモリ 70,528 KB
最終ジャッジ日時 2024-09-22 15:52:17
合計ジャッジ時間 6,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,228 KB
testcase_01 AC 28 ms
25,268 KB
testcase_02 AC 28 ms
25,104 KB
testcase_03 AC 32 ms
25,232 KB
testcase_04 AC 32 ms
25,360 KB
testcase_05 AC 33 ms
25,616 KB
testcase_06 AC 33 ms
27,572 KB
testcase_07 AC 33 ms
27,460 KB
testcase_08 AC 28 ms
24,868 KB
testcase_09 AC 33 ms
27,492 KB
testcase_10 AC 33 ms
27,476 KB
testcase_11 AC 33 ms
25,092 KB
testcase_12 AC 33 ms
27,656 KB
testcase_13 AC 282 ms
67,868 KB
testcase_14 AC 101 ms
42,500 KB
testcase_15 AC 240 ms
64,300 KB
testcase_16 AC 265 ms
65,736 KB
testcase_17 AC 128 ms
46,460 KB
testcase_18 AC 92 ms
42,760 KB
testcase_19 AC 284 ms
70,276 KB
testcase_20 AC 63 ms
32,896 KB
testcase_21 AC 114 ms
44,096 KB
testcase_22 AC 140 ms
49,076 KB
testcase_23 AC 285 ms
68,496 KB
testcase_24 AC 283 ms
70,428 KB
testcase_25 AC 283 ms
70,448 KB
testcase_26 AC 284 ms
66,340 KB
testcase_27 AC 286 ms
70,528 KB
testcase_28 AC 27 ms
26,804 KB
testcase_29 AC 28 ms
25,392 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 V
{
	static long[] ReadL() => Array.ConvertAll(Console.ReadLine().Split(), long.Parse);
	static void Main()
	{
		var n = int.Parse(Console.ReadLine());
		var a = ReadL();

		if (n == 1)
		{
			Console.WriteLine(a[0]);
		}
		else
		{
			var s = a.Select((x, i) => (i + 2) * x % M).Sum() % M;
			Console.WriteLine(s * MPow(2, n - 2) % M);
		}
	}

	const long M = 998244353;
	static long MPow(long b, long i)
	{
		long r = 1;
		for (; i != 0; b = b * b % M, i >>= 1) if ((i & 1) != 0) r = r * b % M;
		return r;
	}
}
0