結果

問題 No.1299 Random Array Score
ユーザー tentententen
提出日時 2024-02-07 09:08:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 1,549 bytes
コンパイル時間 4,193 ms
コンパイル使用メモリ 80,360 KB
実行使用メモリ 52,672 KB
最終ジャッジ日時 2024-09-28 12:24:04
合計ジャッジ時間 12,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
38,108 KB
testcase_01 AC 64 ms
37,896 KB
testcase_02 AC 67 ms
38,208 KB
testcase_03 AC 273 ms
50,164 KB
testcase_04 AC 270 ms
50,220 KB
testcase_05 AC 246 ms
47,096 KB
testcase_06 AC 243 ms
46,928 KB
testcase_07 AC 243 ms
47,068 KB
testcase_08 AC 269 ms
50,204 KB
testcase_09 AC 105 ms
39,760 KB
testcase_10 AC 195 ms
44,516 KB
testcase_11 AC 144 ms
41,672 KB
testcase_12 AC 243 ms
46,532 KB
testcase_13 AC 268 ms
50,204 KB
testcase_14 AC 244 ms
46,708 KB
testcase_15 AC 246 ms
46,700 KB
testcase_16 AC 244 ms
47,004 KB
testcase_17 AC 160 ms
42,696 KB
testcase_18 AC 220 ms
45,444 KB
testcase_19 AC 240 ms
45,896 KB
testcase_20 AC 197 ms
44,948 KB
testcase_21 AC 102 ms
39,720 KB
testcase_22 AC 157 ms
43,380 KB
testcase_23 AC 245 ms
46,692 KB
testcase_24 AC 250 ms
47,040 KB
testcase_25 AC 247 ms
46,764 KB
testcase_26 AC 101 ms
39,440 KB
testcase_27 AC 173 ms
43,460 KB
testcase_28 AC 153 ms
42,236 KB
testcase_29 AC 192 ms
44,664 KB
testcase_30 AC 249 ms
46,584 KB
testcase_31 AC 200 ms
44,768 KB
testcase_32 AC 266 ms
50,108 KB
testcase_33 AC 279 ms
52,620 KB
testcase_34 AC 214 ms
45,652 KB
testcase_35 AC 286 ms
52,672 KB
testcase_36 AC 216 ms
45,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

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 sum = IntStream.range(0, n).mapToLong(i -> sc.nextInt()).sum() % MOD;
        System.out.println(pow(2, k) * sum % 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;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0