結果

問題 No.1299 Random Array Score
ユーザー tentententen
提出日時 2020-12-01 07:42:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 876 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 69,000 KB
最終ジャッジ日時 2024-09-13 02:48:55
合計ジャッジ時間 26,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,020 KB
testcase_01 AC 133 ms
53,864 KB
testcase_02 AC 133 ms
54,572 KB
testcase_03 AC 858 ms
65,676 KB
testcase_04 AC 831 ms
65,560 KB
testcase_05 AC 761 ms
62,912 KB
testcase_06 AC 743 ms
60,504 KB
testcase_07 AC 710 ms
62,672 KB
testcase_08 AC 850 ms
66,004 KB
testcase_09 AC 240 ms
57,316 KB
testcase_10 AC 582 ms
59,336 KB
testcase_11 AC 355 ms
59,016 KB
testcase_12 AC 746 ms
60,284 KB
testcase_13 AC 802 ms
65,136 KB
testcase_14 AC 755 ms
60,156 KB
testcase_15 AC 725 ms
61,476 KB
testcase_16 AC 749 ms
61,052 KB
testcase_17 AC 393 ms
59,148 KB
testcase_18 AC 613 ms
59,260 KB
testcase_19 AC 631 ms
59,164 KB
testcase_20 AC 548 ms
59,332 KB
testcase_21 AC 218 ms
56,896 KB
testcase_22 AC 435 ms
59,356 KB
testcase_23 AC 702 ms
61,492 KB
testcase_24 AC 795 ms
62,568 KB
testcase_25 AC 711 ms
60,660 KB
testcase_26 AC 217 ms
56,600 KB
testcase_27 AC 470 ms
59,280 KB
testcase_28 AC 415 ms
59,012 KB
testcase_29 AC 482 ms
59,652 KB
testcase_30 AC 710 ms
60,304 KB
testcase_31 AC 515 ms
59,192 KB
testcase_32 AC 845 ms
64,620 KB
testcase_33 AC 852 ms
69,000 KB
testcase_34 AC 747 ms
63,496 KB
testcase_35 AC 876 ms
68,628 KB
testcase_36 AC 698 ms
63,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long k = sc.nextLong();
        long total = 0;
        for (int i = 0; i < n; i++) {
            total += sc.nextInt();
        }
        total %= MOD;
        System.out.println(total * 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;
        }
    }
}
0