結果

問題 No.2111 Sum of Diff
ユーザー simansiman
提出日時 2022-10-30 02:21:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-07-06 22:01:08
合計ジャッジ時間 6,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 72 ms
12,160 KB
testcase_02 AC 302 ms
26,240 KB
testcase_03 AC 227 ms
21,632 KB
testcase_04 AC 101 ms
13,568 KB
testcase_05 AC 304 ms
25,856 KB
testcase_06 AC 301 ms
25,984 KB
testcase_07 AC 126 ms
15,232 KB
testcase_08 AC 149 ms
16,640 KB
testcase_09 AC 85 ms
12,544 KB
testcase_10 AC 92 ms
13,056 KB
testcase_11 AC 181 ms
19,072 KB
testcase_12 AC 175 ms
18,304 KB
testcase_13 AC 142 ms
16,256 KB
testcase_14 AC 257 ms
23,808 KB
testcase_15 AC 292 ms
25,216 KB
testcase_16 AC 164 ms
17,408 KB
testcase_17 AC 300 ms
25,856 KB
testcase_18 AC 144 ms
16,512 KB
testcase_19 AC 244 ms
22,912 KB
testcase_20 AC 301 ms
25,984 KB
testcase_21 AC 77 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:8: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
MOD = 998_244_353

ans = 0

A.each_with_index do |a, i|
  m = (N - i - 1)

  ans += a * 2.pow(N - i - 1, MOD)
  ans -= a * 2.pow(i, MOD)
  ans %= MOD
end

puts ans
0