結果

問題 No.1299 Random Array Score
ユーザー mlihua09mlihua09
提出日時 2020-12-05 15:07:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 87,136 KB
実行使用メモリ 101,956 KB
最終ジャッジ日時 2023-10-13 22:02:32
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,596 KB
testcase_01 AC 70 ms
71,520 KB
testcase_02 AC 72 ms
71,372 KB
testcase_03 AC 112 ms
100,636 KB
testcase_04 AC 110 ms
100,028 KB
testcase_05 AC 97 ms
90,356 KB
testcase_06 AC 92 ms
88,488 KB
testcase_07 AC 92 ms
88,588 KB
testcase_08 AC 109 ms
100,280 KB
testcase_09 AC 73 ms
75,652 KB
testcase_10 AC 84 ms
82,296 KB
testcase_11 AC 76 ms
76,324 KB
testcase_12 AC 90 ms
87,248 KB
testcase_13 AC 110 ms
101,752 KB
testcase_14 AC 92 ms
87,324 KB
testcase_15 AC 92 ms
88,688 KB
testcase_16 AC 92 ms
88,372 KB
testcase_17 AC 76 ms
77,144 KB
testcase_18 AC 85 ms
83,332 KB
testcase_19 AC 86 ms
84,440 KB
testcase_20 AC 82 ms
79,992 KB
testcase_21 AC 73 ms
75,552 KB
testcase_22 AC 77 ms
77,456 KB
testcase_23 AC 94 ms
88,484 KB
testcase_24 AC 95 ms
90,184 KB
testcase_25 AC 93 ms
87,364 KB
testcase_26 AC 74 ms
75,864 KB
testcase_27 AC 79 ms
77,836 KB
testcase_28 AC 78 ms
76,928 KB
testcase_29 AC 81 ms
78,684 KB
testcase_30 AC 93 ms
86,968 KB
testcase_31 AC 81 ms
78,808 KB
testcase_32 AC 111 ms
101,956 KB
testcase_33 AC 113 ms
99,024 KB
testcase_34 AC 93 ms
90,284 KB
testcase_35 AC 113 ms
99,300 KB
testcase_36 AC 95 ms
90,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N, K = map(int, input().split())

print(sum(map(int, input().split())) * pow(2, K, mod) % mod)
0