結果

問題 No.988 N×Mマス計算(総和)
ユーザー Mishan5055Mishan5055
提出日時 2020-02-25 16:53:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 1,931 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 68,760 KB
最終ジャッジ日時 2024-07-06 07:31:31
合計ジャッジ時間 10,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
54,044 KB
testcase_01 AC 102 ms
52,864 KB
testcase_02 AC 128 ms
54,068 KB
testcase_03 AC 118 ms
54,148 KB
testcase_04 AC 128 ms
53,956 KB
testcase_05 AC 125 ms
54,404 KB
testcase_06 AC 130 ms
54,124 KB
testcase_07 AC 134 ms
54,212 KB
testcase_08 AC 128 ms
53,976 KB
testcase_09 AC 122 ms
54,004 KB
testcase_10 AC 454 ms
59,560 KB
testcase_11 AC 567 ms
59,348 KB
testcase_12 AC 664 ms
63,560 KB
testcase_13 AC 510 ms
59,324 KB
testcase_14 AC 505 ms
59,496 KB
testcase_15 AC 506 ms
59,216 KB
testcase_16 AC 583 ms
60,936 KB
testcase_17 AC 700 ms
63,396 KB
testcase_18 AC 465 ms
58,512 KB
testcase_19 AC 711 ms
62,384 KB
testcase_20 AC 690 ms
68,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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