結果

問題 No.987 N×Mマス計算(基本)
ユーザー TatsuyaaaaTatsuyaaaa
提出日時 2020-02-14 21:34:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 74,552 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-10-06 10:46:23
合計ジャッジ時間 5,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,496 KB
testcase_01 AC 108 ms
52,744 KB
testcase_02 AC 165 ms
54,320 KB
testcase_03 AC 136 ms
53,952 KB
testcase_04 AC 140 ms
54,452 KB
testcase_05 AC 145 ms
54,140 KB
testcase_06 AC 166 ms
54,180 KB
testcase_07 AC 152 ms
54,152 KB
testcase_08 AC 130 ms
53,992 KB
testcase_09 AC 128 ms
54,016 KB
testcase_10 AC 138 ms
54,140 KB
testcase_11 AC 176 ms
54,268 KB
testcase_12 AC 181 ms
54,348 KB
testcase_13 AC 144 ms
54,096 KB
testcase_14 AC 133 ms
54,068 KB
testcase_15 AC 141 ms
54,492 KB
testcase_16 AC 176 ms
54,288 KB
testcase_17 AC 190 ms
54,444 KB
testcase_18 AC 165 ms
54,476 KB
testcase_19 AC 176 ms
54,296 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();
        String S = sc.next();
        long[] B = new long[M];
        long[] A = new long[N];
        for (int i=0;i<M;i++) B[i] = sc.nextLong();
        for (int i=0;i<N;i++) A[i] = sc.nextLong();

        for (int i=0;i<N;i++) {
            StringBuilder sb = new StringBuilder();
            for (int j=0;j<M;j++) {
                long tmp = 0;
                if (S.charAt(0)=='+') {
                    tmp = A[i]+B[j];
                } else { // S.charAt(0)=='*'
                    tmp = A[i]*B[j];
                }
                sb.append(tmp);
                if (j!=M-1) sb.append(" ");
            }
            System.out.println(sb);
        }
    }
}
0