結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 95 ms
31,964 KB
testcase_04 AC 96 ms
27,308 KB
testcase_05 AC 71 ms
27,592 KB
testcase_06 AC 63 ms
26,148 KB
testcase_07 AC 69 ms
27,584 KB
testcase_08 AC 94 ms
30,592 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 39 ms
15,328 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 59 ms
25,836 KB
testcase_13 AC 90 ms
33,452 KB
testcase_14 AC 64 ms
19,524 KB
testcase_15 AC 63 ms
23,064 KB
testcase_16 AC 61 ms
26,036 KB
testcase_17 AC 15 ms
7,424 KB
testcase_18 AC 41 ms
15,448 KB
testcase_19 AC 48 ms
15,264 KB
testcase_20 AC 27 ms
11,136 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 17 ms
7,808 KB
testcase_23 AC 63 ms
26,496 KB
testcase_24 AC 72 ms
27,636 KB
testcase_25 AC 61 ms
26,240 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 19 ms
9,088 KB
testcase_28 AC 14 ms
6,944 KB
testcase_29 AC 22 ms
9,984 KB
testcase_30 AC 60 ms
22,452 KB
testcase_31 AC 23 ms
10,240 KB
testcase_32 AC 87 ms
35,024 KB
testcase_33 AC 97 ms
37,156 KB
testcase_34 AC 55 ms
18,608 KB
testcase_35 AC 98 ms
38,184 KB
testcase_36 AC 53 ms
20,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C;fun strtoll(s: UInt8*,p: UInt8**,b: Int32): Int64;end
class String;def to_i64;C.strtoll(self,nil,10);end;end

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 }

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