結果

問題 No.988 N×Mマス計算(総和)
ユーザー htensaihtensai
提出日時 2020-02-21 08:27:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 785 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 67,416 KB
最終ジャッジ日時 2024-07-06 07:28:40
合計ジャッジ時間 11,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,624 KB
testcase_01 AC 131 ms
53,908 KB
testcase_02 AC 145 ms
54,416 KB
testcase_03 AC 143 ms
54,304 KB
testcase_04 AC 141 ms
54,112 KB
testcase_05 AC 147 ms
54,204 KB
testcase_06 AC 142 ms
54,068 KB
testcase_07 AC 143 ms
54,408 KB
testcase_08 AC 141 ms
53,812 KB
testcase_09 AC 142 ms
54,144 KB
testcase_10 AC 520 ms
59,376 KB
testcase_11 AC 659 ms
59,304 KB
testcase_12 AC 767 ms
63,280 KB
testcase_13 AC 558 ms
59,244 KB
testcase_14 AC 582 ms
58,976 KB
testcase_15 AC 557 ms
59,412 KB
testcase_16 AC 730 ms
60,452 KB
testcase_17 AC 784 ms
63,288 KB
testcase_18 AC 590 ms
59,736 KB
testcase_19 AC 727 ms
62,564 KB
testcase_20 AC 785 ms
67,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public 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();
        char op = sc.next().charAt(0);
        long sumB = 0;
        for (int i = 0; i < m; i++) {
            sumB += sc.nextInt();
        }
        sumB %= k;
        long sumA = 0;
        for (int i = 0; i < n; i++) {
            sumA += sc.nextInt();
        }
        sumA %= k;
        if (op == '+') {
            System.out.println((sumA * m + sumB * n) % k);
        } else {
            System.out.println(sumA * sumB % k);
        }
    }
}
0