結果

問題 No.987 N×Mマス計算(基本)
ユーザー tentententen
提出日時 2020-08-24 21:02:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 42,616 KB
最終ジャッジ日時 2024-04-24 03:48:29
合計ジャッジ時間 5,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,956 KB
testcase_01 AC 111 ms
41,400 KB
testcase_02 AC 138 ms
42,372 KB
testcase_03 AC 117 ms
41,668 KB
testcase_04 AC 126 ms
42,144 KB
testcase_05 AC 125 ms
41,660 KB
testcase_06 AC 129 ms
41,336 KB
testcase_07 AC 118 ms
41,568 KB
testcase_08 AC 119 ms
41,968 KB
testcase_09 AC 114 ms
41,256 KB
testcase_10 AC 114 ms
41,520 KB
testcase_11 AC 132 ms
41,516 KB
testcase_12 AC 151 ms
42,308 KB
testcase_13 AC 135 ms
42,240 KB
testcase_14 AC 123 ms
41,832 KB
testcase_15 AC 123 ms
41,468 KB
testcase_16 AC 159 ms
41,768 KB
testcase_17 AC 134 ms
41,916 KB
testcase_18 AC 143 ms
41,680 KB
testcase_19 AC 162 ms
42,616 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