結果

問題 No.987 N×Mマス計算(基本)
ユーザー ParSAParSA
提出日時 2020-02-14 21:49:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 2,905 ms
コンパイル使用メモリ 79,156 KB
実行使用メモリ 43,952 KB
最終ジャッジ日時 2024-10-06 11:19:24
合計ジャッジ時間 8,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,512 KB
testcase_01 AC 149 ms
41,700 KB
testcase_02 AC 266 ms
43,000 KB
testcase_03 AC 219 ms
42,160 KB
testcase_04 AC 241 ms
42,848 KB
testcase_05 AC 239 ms
42,296 KB
testcase_06 AC 254 ms
43,052 KB
testcase_07 AC 229 ms
42,176 KB
testcase_08 AC 189 ms
41,956 KB
testcase_09 AC 191 ms
41,756 KB
testcase_10 WA -
testcase_11 AC 261 ms
43,088 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 176 ms
41,948 KB
testcase_15 AC 231 ms
42,444 KB
testcase_16 AC 304 ms
43,060 KB
testcase_17 WA -
testcase_18 AC 300 ms
43,200 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {

	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int n = stdIn.nextInt(); //n行
		
		int m = stdIn.nextInt(); //m列
		
		
		String op = stdIn.next();
		
		int[] b = new int[m];
		
		for(int i = 0; i < m; i++) {
			b[i] = stdIn.nextInt();
		}
		
		int[] a = new int[n];
		
		for(int i = 0; i < n; i++) {
			a[i] = stdIn.nextInt();
		}
		
		if(op.equals("+")) {
			for(int i = 0; i < n; i++) {
				for(int j = 0; j < m; j++) {
					System.out.print(a[i]+b[j]+" ");
				}
				System.out.println();
			}
			
			
		}else {
			for(int i = 0; i < n; i++) {
				for(int j = 0; j < m; j++) {
					System.out.print(a[i]*b[j]+" ");
				}
				System.out.println();
			}
		
		}
		
	}

}
0