結果

問題 No.1299 Random Array Score
ユーザー yoshykaiyoshykai
提出日時 2020-11-27 21:53:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 2,777 bytes
コンパイル時間 3,012 ms
コンパイル使用メモリ 88,548 KB
実行使用メモリ 45,428 KB
最終ジャッジ日時 2024-07-26 12:22:32
合計ジャッジ時間 11,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,308 KB
testcase_01 AC 52 ms
37,356 KB
testcase_02 AC 52 ms
37,376 KB
testcase_03 AC 228 ms
44,028 KB
testcase_04 AC 226 ms
44,088 KB
testcase_05 AC 212 ms
43,660 KB
testcase_06 AC 210 ms
44,072 KB
testcase_07 AC 206 ms
44,140 KB
testcase_08 AC 235 ms
45,004 KB
testcase_09 AC 115 ms
39,368 KB
testcase_10 AC 187 ms
43,848 KB
testcase_11 AC 136 ms
41,984 KB
testcase_12 AC 217 ms
43,828 KB
testcase_13 AC 232 ms
45,156 KB
testcase_14 AC 201 ms
43,936 KB
testcase_15 AC 211 ms
44,028 KB
testcase_16 AC 206 ms
44,164 KB
testcase_17 AC 145 ms
42,632 KB
testcase_18 AC 196 ms
43,928 KB
testcase_19 AC 201 ms
44,120 KB
testcase_20 AC 172 ms
43,656 KB
testcase_21 AC 101 ms
39,336 KB
testcase_22 AC 140 ms
43,100 KB
testcase_23 AC 215 ms
44,160 KB
testcase_24 AC 220 ms
44,232 KB
testcase_25 AC 211 ms
43,876 KB
testcase_26 AC 93 ms
38,736 KB
testcase_27 AC 135 ms
43,204 KB
testcase_28 AC 147 ms
42,464 KB
testcase_29 AC 158 ms
43,564 KB
testcase_30 AC 206 ms
44,144 KB
testcase_31 AC 168 ms
43,844 KB
testcase_32 AC 239 ms
44,268 KB
testcase_33 AC 244 ms
45,428 KB
testcase_34 AC 165 ms
43,984 KB
testcase_35 AC 263 ms
44,416 KB
testcase_36 AC 157 ms
43,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Main{
  public static void main(String args[]){
    int n = readI();
    long k = readLong(),s=0;
    long mod = 998244353;
    for(int i=0;i<n;i++){
      s+=readI();
      s%=mod;
    }
    long z = modpow(2,k,mod);
    z=(z*s)%mod;
    pl(z+"");
  }

  public static long modpow(long x,long n,long mod){
    long r = 1;
    while(n>=1){
      if(1==(n&1)){
        r = r*x % mod;
      }
      x = x*x % mod;
      n/=2;
    }
    return r;
  }

  public static void sortA(int n[]){
    Arrays.sort(n);
  }

  static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  public static void pr(String str){
    System.out.print(str);
  }
  public static void pl(String str){
    System.out.println(str);
  }
  public static String read(){
    try{
      return ctos((char)br.read());
    }catch(IOException e){
      e.printStackTrace();
      return "";
    }
  }
  public static char readC(){
    try{
      return (char)br.read();
    }catch(IOException e){
      e.printStackTrace();
      return (char)-1;
    }
  }
  public static String readL(){
    try{
      return br.readLine();
    }catch(IOException e){
      e.printStackTrace();
      return "";
    }
  }
  public static String readS(){
    StringBuilder sb = new StringBuilder();
    while(true){
      try{
        int k = br.read();
        if(k==-1||(char)k==' '||(char)k=='\n'){break;}
        sb.append((char)k);
      }catch(IOException e){
        e.printStackTrace();
      }
    }
    return sb.toString();
  }
  public static long readLong(){
    return stol(readS());
  }
  public static long stol(String s){
    return Long.parseLong(s);
  }
  public static int readI(){
    return stoi(readS());
  }
  public static String[] readSs(){
    return readL().split(" ");
  }
  public static int[] readIs(){
    return stoi(readSs());
  }
  public static int stoi(String s){
    return Integer.parseInt(s);
  }
  public static int[] stoi(String s[]){
    int a[]=new int[s.length];
    for(int i=0;i<s.length;i++){
      a[i]=stoi(s[i]);
    }
    return a;
  }
  public static String itos(int i){
    return String.valueOf(i);
  }
  public static String[] itos(int[] a){
    String s[]=new String[a.length];
    for(int i=0;i<a.length;i++){
      s[i]=itos(a[i]);
    }
    return s;
  }
  public static String ctos(char c){
    return String.valueOf(c);
  }
  public static String cstos(char[] c){
    return new String(c);
  }
  public static char stoc(String s){
    return s.charAt(0);
  }
  public static char[] stocs(String s){
    return s.toCharArray();
  }
  public static int[] Itoi(Integer a[]){
    int[]result=new int[a.length];
    for(int i=0;i<a.length;i++){
      result[i]=a[i];
    }
    return result;
  }
}
0