結果

問題 No.987 N×Mマス計算(基本)
ユーザー ParSAParSA
提出日時 2020-02-14 21:57:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 2,672 ms
コンパイル使用メモリ 87,492 KB
実行使用メモリ 44,428 KB
最終ジャッジ日時 2024-10-06 11:38:42
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,560 KB
testcase_01 AC 130 ms
41,104 KB
testcase_02 AC 240 ms
42,972 KB
testcase_03 AC 178 ms
41,876 KB
testcase_04 AC 227 ms
42,740 KB
testcase_05 AC 220 ms
42,080 KB
testcase_06 AC 217 ms
42,252 KB
testcase_07 AC 198 ms
42,088 KB
testcase_08 AC 144 ms
40,736 KB
testcase_09 AC 164 ms
42,056 KB
testcase_10 AC 170 ms
41,720 KB
testcase_11 AC 238 ms
42,724 KB
testcase_12 AC 252 ms
43,028 KB
testcase_13 AC 217 ms
42,488 KB
testcase_14 AC 168 ms
41,824 KB
testcase_15 AC 218 ms
42,224 KB
testcase_16 AC 268 ms
43,372 KB
testcase_17 AC 226 ms
42,324 KB
testcase_18 AC 286 ms
42,852 KB
testcase_19 AC 290 ms
44,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
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((long)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((long)a[i]*b[j]+" ");
				}
				System.out.println();
			}
		
		}
		
	}

}
0