結果

問題 No.987 N×Mマス計算(基本)
ユーザー tentententen
提出日時 2020-08-24 21:02:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 77,896 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-11-06 10:40:22
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,092 KB
testcase_01 AC 134 ms
53,940 KB
testcase_02 AC 160 ms
54,176 KB
testcase_03 AC 146 ms
53,988 KB
testcase_04 AC 153 ms
54,172 KB
testcase_05 AC 154 ms
54,124 KB
testcase_06 AC 166 ms
54,248 KB
testcase_07 AC 147 ms
54,088 KB
testcase_08 AC 140 ms
54,112 KB
testcase_09 AC 140 ms
54,020 KB
testcase_10 AC 144 ms
53,964 KB
testcase_11 AC 164 ms
54,264 KB
testcase_12 AC 184 ms
54,028 KB
testcase_13 AC 152 ms
53,964 KB
testcase_14 AC 144 ms
54,212 KB
testcase_15 AC 154 ms
54,064 KB
testcase_16 AC 189 ms
54,208 KB
testcase_17 AC 170 ms
54,312 KB
testcase_18 AC 187 ms
54,160 KB
testcase_19 AC 192 ms
54,532 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();
        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();
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (j > 0) {
                    sb.append(" ");
                }
                long value;
                if (isPlus) {
                    value = colums[j] + rows[i];
                } else {
                    value = colums[j] * rows[i];
                }
                sb.append(value);
            }
            sb.append("\n");
        }
        System.out.print(sb);
    }
}
0