結果

問題 No.988 N×Mマス計算(総和)
ユーザー tentententen
提出日時 2020-08-24 21:09:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 56,752 KB
最終ジャッジ日時 2024-04-24 03:49:43
合計ジャッジ時間 11,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,184 KB
testcase_01 AC 136 ms
41,236 KB
testcase_02 AC 149 ms
41,620 KB
testcase_03 AC 146 ms
41,384 KB
testcase_04 AC 141 ms
41,232 KB
testcase_05 AC 145 ms
41,664 KB
testcase_06 AC 145 ms
41,688 KB
testcase_07 AC 142 ms
41,348 KB
testcase_08 AC 134 ms
41,180 KB
testcase_09 AC 137 ms
41,748 KB
testcase_10 AC 507 ms
47,908 KB
testcase_11 AC 615 ms
48,072 KB
testcase_12 AC 736 ms
51,896 KB
testcase_13 AC 572 ms
48,020 KB
testcase_14 AC 571 ms
48,000 KB
testcase_15 AC 576 ms
48,700 KB
testcase_16 AC 634 ms
48,888 KB
testcase_17 AC 683 ms
51,952 KB
testcase_18 AC 627 ms
48,272 KB
testcase_19 AC 770 ms
51,264 KB
testcase_20 AC 832 ms
56,752 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();
        boolean isPlus = (sc.next().charAt(0) == '+');
        long colums = 0;
        for (int i = 0; i < m; i++) {
            colums += sc.nextInt();
            colums %= k;
        }
        long rows = 0;
        for (int i = 0; i < n; i++) {
            rows += sc.nextInt();
            rows %= k;
        }
        if (isPlus) {
            System.out.println((colums * n + rows * m) % k);
        } else {
            System.out.println(colums * rows % k);
        }
    }
}
0