結果

問題 No.988 N×Mマス計算(総和)
ユーザー Mishan5055Mishan5055
提出日時 2020-02-25 16:35:22
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 842 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,540 KB
最終ジャッジ日時 2024-07-06 07:30:43
合計ジャッジ時間 8,568 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,352 KB
testcase_01 AC 136 ms
53,876 KB
testcase_02 AC 149 ms
54,200 KB
testcase_03 AC 142 ms
54,128 KB
testcase_04 AC 140 ms
54,540 KB
testcase_05 AC 147 ms
54,176 KB
testcase_06 AC 151 ms
54,008 KB
testcase_07 AC 156 ms
53,992 KB
testcase_08 AC 146 ms
54,100 KB
testcase_09 AC 144 ms
54,092 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int N=sc.nextInt();
        int M=sc.nextInt();
        int K=sc.nextInt();
        String str=sc.next();
        long[] B=new long[M];
        long[] A=new long[N];
        
        for(int i=0;i<M;i++){
            B[i]=sc.nextLong();
        }
        
        for(int i=0;i<N;i++){
            A[i]=sc.nextLong();
        }
        
        long ANS=0L;
        
        for(int i=0;i<M;i++){
            for(int j=0;j<N;j++){
                if(str.equals("+")){
                    ANS+=A[j]+B[i];
                    ANS=ANS%K;
                }else{
                    ANS+=A[j]*B[i];
                    ANS=ANS%K;
                }
            }
        }
      
        System.out.println(ANS);
    }
}
0