結果

問題 No.987 N×Mマス計算(基本)
ユーザー ks2mks2m
提出日時 2020-02-14 21:23:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 42,692 KB
最終ジャッジ日時 2024-10-06 10:24:44
合計ジャッジ時間 6,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,344 KB
testcase_01 AC 138 ms
41,372 KB
testcase_02 AC 180 ms
41,780 KB
testcase_03 AC 157 ms
41,264 KB
testcase_04 AC 166 ms
41,744 KB
testcase_05 AC 157 ms
41,664 KB
testcase_06 AC 169 ms
41,712 KB
testcase_07 AC 158 ms
41,524 KB
testcase_08 AC 147 ms
41,092 KB
testcase_09 AC 145 ms
41,128 KB
testcase_10 AC 150 ms
41,184 KB
testcase_11 AC 175 ms
41,732 KB
testcase_12 AC 192 ms
42,580 KB
testcase_13 AC 158 ms
41,320 KB
testcase_14 AC 148 ms
41,380 KB
testcase_15 AC 168 ms
41,820 KB
testcase_16 AC 194 ms
41,892 KB
testcase_17 AC 188 ms
42,324 KB
testcase_18 AC 181 ms
42,176 KB
testcase_19 AC 202 ms
42,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		String s = sc.next();
		long[] b = new long[m];
		for (int i = 0; i < b.length; i++) {
			b[i] = sc.nextLong();
		}
		long[] a = new long[n];
		for (int i = 0; i < a.length; i++) {
			a[i] = sc.nextLong();
		}
		sc.close();

		for (int i = 0; i < a.length; i++) {
			StringBuilder sb = new StringBuilder();
			for (int j = 0; j < b.length; j++) {
				if ("+".equals(s)) {
					sb.append(a[i] + b[j]).append(' ');
				} else {
					sb.append(a[i] * b[j]).append(' ');
				}
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());
		}
	}
}
0