結果

問題 No.1299 Random Array Score
ユーザー universatouniversato
提出日時 2020-11-27 23:14:05
言語 Crystal
(1.11.2)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 11,250 ms
コンパイル使用メモリ 299,764 KB
実行使用メモリ 38,260 KB
最終ジャッジ日時 2024-06-30 21:46:41
合計ジャッジ時間 14,216 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 96 ms
32,028 KB
testcase_04 AC 93 ms
27,336 KB
testcase_05 AC 71 ms
27,608 KB
testcase_06 AC 61 ms
26,156 KB
testcase_07 AC 65 ms
26,568 KB
testcase_08 AC 88 ms
33,016 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 38 ms
15,348 KB
testcase_11 AC 12 ms
6,940 KB
testcase_12 AC 59 ms
25,152 KB
testcase_13 AC 89 ms
35,460 KB
testcase_14 AC 63 ms
19,532 KB
testcase_15 AC 63 ms
26,528 KB
testcase_16 AC 63 ms
26,820 KB
testcase_17 AC 15 ms
7,424 KB
testcase_18 AC 42 ms
15,360 KB
testcase_19 AC 49 ms
15,232 KB
testcase_20 AC 27 ms
11,136 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 16 ms
7,808 KB
testcase_23 AC 63 ms
27,192 KB
testcase_24 AC 71 ms
27,616 KB
testcase_25 AC 61 ms
26,576 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 19 ms
9,088 KB
testcase_28 AC 13 ms
6,940 KB
testcase_29 AC 22 ms
9,984 KB
testcase_30 AC 60 ms
22,496 KB
testcase_31 AC 23 ms
10,112 KB
testcase_32 AC 86 ms
34,876 KB
testcase_33 AC 96 ms
37,236 KB
testcase_34 AC 54 ms
17,760 KB
testcase_35 AC 99 ms
38,260 KB
testcase_36 AC 54 ms
20,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

require "big"

struct Int
  def pow(n : Int, mod = nil ) : Int
    a = to_i64
    res = 1_i64
    while n > 0
      if (n & 1) != 0
        res *= a
        res %= mod if mod
      end
      a *= a
      a %= mod if mod
      n >>= 1
    end
    res
  end
end

mod = 998244353i64

n, k = gets.to_s.split.map{ |e| e.to_big_i }
a    = gets.to_s.split.map{ |e| e.to_big_i }

puts a.sum * 2.to_big_i.pow(k, mod) % mod
0