結果

問題 No.987 N×Mマス計算(基本)
ユーザー rymg111rymg111
提出日時 2020-09-22 21:45:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 77,564 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-06-26 21:23:39
合計ジャッジ時間 7,649 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,772 KB
testcase_01 AC 132 ms
54,208 KB
testcase_02 AC 276 ms
55,940 KB
testcase_03 AC 206 ms
54,812 KB
testcase_04 AC 259 ms
54,792 KB
testcase_05 AC 255 ms
54,672 KB
testcase_06 AC 258 ms
56,068 KB
testcase_07 AC 204 ms
54,504 KB
testcase_08 AC 175 ms
54,456 KB
testcase_09 AC 175 ms
54,204 KB
testcase_10 AC 180 ms
54,384 KB
testcase_11 AC 282 ms
55,572 KB
testcase_12 AC 285 ms
56,964 KB
testcase_13 AC 212 ms
54,288 KB
testcase_14 AC 165 ms
54,260 KB
testcase_15 AC 207 ms
54,332 KB
testcase_16 AC 294 ms
55,868 KB
testcase_17 AC 268 ms
54,736 KB
testcase_18 AC 286 ms
57,892 KB
testcase_19 AC 324 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int raws = sc.nextInt();
		int columns = sc.nextInt();
		String op = sc.next();
		long[] rawNum = new long[raws];
		long[] colNum = new long[columns];
		for(int i = 0; i < columns; i++) {
			colNum[i] = sc.nextInt();
		}
		for(int j = 0; j < raws; j++) {
			rawNum[j] = sc.nextInt();
		}
		for(int k = 0; k < raws; k++) {
			for(int l = 0; l < columns; l++) {
				calculate(op, rawNum[k], colNum[l]);
				System.out.print(" ");
			}
			System.out.println("");
		}
	}
	public static void calculate(String op, long raw, long col) {
		if(op.equals("*")) {
			System.out.print(raw * col);
		} else {
			System.out.print(raw + col);
		}
	}
}
0