結果

問題 No.1299 Random Array Score
ユーザー tentententen
提出日時 2022-08-04 18:03:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 1,361 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 52,664 KB
最終ジャッジ日時 2024-09-14 14:38:14
合計ジャッジ時間 12,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,200 KB
testcase_01 AC 53 ms
37,152 KB
testcase_02 AC 51 ms
37,132 KB
testcase_03 AC 262 ms
50,172 KB
testcase_04 AC 259 ms
50,092 KB
testcase_05 AC 240 ms
46,492 KB
testcase_06 AC 238 ms
46,416 KB
testcase_07 AC 249 ms
46,648 KB
testcase_08 AC 260 ms
49,988 KB
testcase_09 AC 102 ms
39,288 KB
testcase_10 AC 186 ms
43,932 KB
testcase_11 AC 138 ms
40,828 KB
testcase_12 AC 250 ms
46,796 KB
testcase_13 AC 318 ms
49,552 KB
testcase_14 AC 241 ms
46,208 KB
testcase_15 AC 239 ms
46,748 KB
testcase_16 AC 235 ms
46,024 KB
testcase_17 AC 140 ms
41,340 KB
testcase_18 AC 191 ms
44,132 KB
testcase_19 AC 225 ms
45,056 KB
testcase_20 AC 175 ms
43,612 KB
testcase_21 AC 97 ms
39,016 KB
testcase_22 AC 153 ms
42,768 KB
testcase_23 AC 235 ms
46,492 KB
testcase_24 AC 238 ms
47,200 KB
testcase_25 AC 238 ms
46,500 KB
testcase_26 AC 91 ms
38,796 KB
testcase_27 AC 168 ms
43,216 KB
testcase_28 AC 142 ms
41,196 KB
testcase_29 AC 159 ms
43,400 KB
testcase_30 AC 228 ms
46,244 KB
testcase_31 AC 182 ms
44,488 KB
testcase_32 AC 258 ms
50,244 KB
testcase_33 AC 276 ms
52,664 KB
testcase_34 AC 207 ms
45,200 KB
testcase_35 AC 271 ms
52,324 KB
testcase_36 AC 209 ms
44,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long k = sc.nextLong();
        long total = 0;
        for (int i = 0; i < n; i++) {
            total += sc.nextInt();
        }
        System.out.println(total % MOD * pow(2, k) % MOD);
    }
    
    static long pow(long x, long p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0