結果

問題 No.987 N×Mマス計算(基本)
ユーザー ParSAParSA
提出日時 2020-02-14 21:55:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 923 bytes
コンパイル時間 2,447 ms
コンパイル使用メモリ 85,756 KB
実行使用メモリ 44,652 KB
最終ジャッジ日時 2024-10-06 11:33:21
合計ジャッジ時間 7,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,384 KB
testcase_01 AC 135 ms
41,800 KB
testcase_02 AC 244 ms
43,004 KB
testcase_03 AC 198 ms
42,188 KB
testcase_04 AC 217 ms
42,236 KB
testcase_05 AC 213 ms
42,212 KB
testcase_06 AC 226 ms
42,636 KB
testcase_07 AC 202 ms
42,336 KB
testcase_08 AC 157 ms
41,980 KB
testcase_09 AC 175 ms
41,788 KB
testcase_10 WA -
testcase_11 AC 223 ms
42,668 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 151 ms
41,764 KB
testcase_15 AC 224 ms
42,196 KB
testcase_16 AC 290 ms
43,348 KB
testcase_17 WA -
testcase_18 AC 279 ms
43,208 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++) {
					if(j==m-1) {
						System.out.print(a[i]+b[j]);
					}else {
						
					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++) {
					if(j==m-1) {
						System.out.print(a[i]*b[j]);
					}else {
						
					System.out.print(a[i]*b[j]+" ");
					}
				}
				System.out.println();
			}
		
		}
		
	}

}
0