結果

問題 No.2111 Sum of Diff
ユーザー scrappyscrappy
提出日時 2022-10-28 23:48:55
言語 Go
(1.22.1)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 13,656 ms
コンパイル使用メモリ 232,324 KB
実行使用メモリ 9,680 KB
最終ジャッジ日時 2024-07-06 03:08:14
合計ジャッジ時間 15,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 57 ms
9,672 KB
testcase_03 AC 38 ms
7,632 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 57 ms
9,672 KB
testcase_06 AC 58 ms
9,676 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 18 ms
7,496 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 27 ms
7,632 KB
testcase_12 AC 26 ms
7,632 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 47 ms
9,680 KB
testcase_15 AC 55 ms
9,676 KB
testcase_16 AC 24 ms
7,632 KB
testcase_17 AC 57 ms
9,676 KB
testcase_18 AC 16 ms
6,948 KB
testcase_19 AC 43 ms
9,676 KB
testcase_20 AC 58 ms
9,672 KB
testcase_21 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.2111 Sum of Diff
package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
	"strings"
)

func main() {
	sc := bufio.NewScanner(os.Stdin)
	sc.Buffer(make([]byte, 200_000*10+2), 200_000*10+2)
	sc.Scan()
	N, _ := strconv.Atoi(sc.Text())

	sc.Scan()
	ss := strings.Split(sc.Text(), " ")

	sum := 0
	for i, s := range ss {
		a, _ := strconv.Atoi(s)
		k := modpow(2, N-1-i, MOD) - modpow(2, i, MOD)
		v := (k * a % MOD)
		if v < 0 {
			v += MOD
		}
		sum = (sum + v) % MOD
	}

	fmt.Println(sum)
}

const MOD = 998244353

func modpow(a int, n int, mod int) int {
	m := 1
	for n > 0 {
		if n&1 == 1 {
			m = (m * a) % mod
		}
		a = (a * a) % mod
		n >>= 1
	}
	return m
}
0