結果

問題 No.987 N×Mマス計算(基本)
ユーザー rymg111rymg111
提出日時 2020-09-22 21:43:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 76,808 KB
実行使用メモリ 44,552 KB
最終ジャッジ日時 2024-06-26 21:19:21
合計ジャッジ時間 7,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,500 KB
testcase_01 AC 128 ms
41,280 KB
testcase_02 AC 277 ms
42,904 KB
testcase_03 AC 195 ms
42,488 KB
testcase_04 AC 258 ms
42,880 KB
testcase_05 AC 242 ms
42,468 KB
testcase_06 AC 267 ms
42,888 KB
testcase_07 AC 209 ms
42,016 KB
testcase_08 AC 171 ms
41,688 KB
testcase_09 AC 174 ms
41,536 KB
testcase_10 WA -
testcase_11 AC 260 ms
43,016 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 169 ms
42,000 KB
testcase_15 AC 210 ms
42,272 KB
testcase_16 AC 285 ms
44,180 KB
testcase_17 WA -
testcase_18 AC 276 ms
44,552 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
		int[] rawNum = new int[raws];
		int[] colNum = new int[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, int raw, int col) {
		if(op.equals("*")) {
			System.out.print(raw * col);
		} else {
			System.out.print(raw + col);
		}
	}
}
0