結果

問題 No.988 N×Mマス計算(総和)
ユーザー tentententen
提出日時 2020-08-24 21:04:41
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 947 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 74,800 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-11-06 10:40:49
合計ジャッジ時間 8,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,152 KB
testcase_01 AC 136 ms
53,772 KB
testcase_02 AC 150 ms
54,020 KB
testcase_03 AC 145 ms
54,028 KB
testcase_04 AC 140 ms
54,024 KB
testcase_05 AC 148 ms
54,080 KB
testcase_06 AC 147 ms
54,456 KB
testcase_07 AC 148 ms
54,080 KB
testcase_08 AC 146 ms
54,040 KB
testcase_09 AC 147 ms
53,916 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.*;

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();
        boolean isPlus = (sc.next().charAt(0) == '+');
        long[] colums = new long[m];
        for (int i = 0; i < m; i++) {
            colums[i] = sc.nextInt();
        }
        int[] rows = new int[n];
        for (int i = 0; i < n; i++) {
            rows[i] = sc.nextInt();
        }
        int ans = 0;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                long value;
                if (isPlus) {
                    value = colums[j] + rows[i];
                } else {
                    value = colums[j] * rows[i];
                }
                ans += (int)(value % k);
                ans %= k;
            }
        }
        System.out.println(ans);
    }
}
0