結果

問題 No.987 N×Mマス計算(基本)
ユーザー mattyan0502mattyan0502
提出日時 2020-05-24 20:08:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,097 bytes
コンパイル時間 4,735 ms
コンパイル使用メモリ 86,192 KB
実行使用メモリ 43,956 KB
最終ジャッジ日時 2024-10-12 04:26:34
合計ジャッジ時間 7,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,564 KB
testcase_01 AC 123 ms
41,768 KB
testcase_02 AC 269 ms
43,192 KB
testcase_03 AC 207 ms
42,028 KB
testcase_04 AC 237 ms
42,404 KB
testcase_05 AC 216 ms
42,860 KB
testcase_06 AC 230 ms
42,776 KB
testcase_07 AC 197 ms
42,108 KB
testcase_08 AC 149 ms
41,492 KB
testcase_09 AC 167 ms
41,636 KB
testcase_10 WA -
testcase_11 AC 233 ms
42,788 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 152 ms
41,764 KB
testcase_15 AC 221 ms
42,144 KB
testcase_16 AC 269 ms
42,904 KB
testcase_17 WA -
testcase_18 AC 279 ms
43,032 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
        int B[] = new int[M];
        for(int i=0;i<M;i++)
        {
            B[i] = sc.nextInt();
        }
        for(int j=0;j<N;j++)
        {
            int C = sc.nextInt();
            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