結果

問題 No.988 N×Mマス計算(総和)
ユーザー tentententen
提出日時 2020-08-24 21:09:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 801 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 68,256 KB
最終ジャッジ日時 2024-11-06 10:41:46
合計ジャッジ時間 11,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,172 KB
testcase_01 AC 138 ms
53,968 KB
testcase_02 AC 148 ms
53,824 KB
testcase_03 AC 145 ms
54,024 KB
testcase_04 AC 138 ms
53,920 KB
testcase_05 AC 145 ms
54,272 KB
testcase_06 AC 149 ms
54,140 KB
testcase_07 AC 145 ms
54,056 KB
testcase_08 AC 143 ms
54,200 KB
testcase_09 AC 146 ms
54,164 KB
testcase_10 AC 559 ms
59,404 KB
testcase_11 AC 639 ms
59,468 KB
testcase_12 AC 784 ms
63,668 KB
testcase_13 AC 597 ms
59,352 KB
testcase_14 AC 572 ms
59,712 KB
testcase_15 AC 570 ms
59,208 KB
testcase_16 AC 675 ms
60,656 KB
testcase_17 AC 761 ms
63,660 KB
testcase_18 AC 521 ms
59,032 KB
testcase_19 AC 742 ms
62,920 KB
testcase_20 AC 801 ms
68,256 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