結果

問題 No.987 N×Mマス計算(基本)
ユーザー mattyan0502mattyan0502
提出日時 2020-05-24 20:10:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 44,624 KB
最終ジャッジ日時 2024-10-12 04:29:02
合計ジャッジ時間 7,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,624 KB
testcase_01 AC 127 ms
41,756 KB
testcase_02 AC 261 ms
42,768 KB
testcase_03 AC 196 ms
42,712 KB
testcase_04 AC 222 ms
43,156 KB
testcase_05 AC 219 ms
42,628 KB
testcase_06 AC 228 ms
42,508 KB
testcase_07 AC 197 ms
42,532 KB
testcase_08 AC 140 ms
41,912 KB
testcase_09 AC 157 ms
41,724 KB
testcase_10 AC 165 ms
42,104 KB
testcase_11 AC 231 ms
43,056 KB
testcase_12 AC 284 ms
43,364 KB
testcase_13 AC 217 ms
42,012 KB
testcase_14 AC 162 ms
41,676 KB
testcase_15 AC 220 ms
42,240 KB
testcase_16 AC 281 ms
43,200 KB
testcase_17 AC 233 ms
42,916 KB
testcase_18 AC 273 ms
43,716 KB
testcase_19 AC 313 ms
44,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = sc.nextInt();
        String op = sc.next();
        long B[] = new long[M];
        for(int i=0;i<M;i++)
        {
            B[i] = sc.nextInt();
        }
        for(int j=0;j<N;j++)
        {
            long C = sc.nextLong();
            for(int k=0;k<M;k++)
            {
                if(op.equals("+"))
                {
                    if(k<M-1)
                    {
                        System.out.print(B[k] + C +" ");
                    }else{
                        System.out.print(B[k] + C);
                    }
                }
                else{
                    if(k<M-1)
                    {
                        System.out.print(B[k] * C +" ");
                    }else{
                        System.out.print(B[k] * C);
                    }
                }
            }
            System.out.println("");
        }
    }
}
0