結果

問題 No.987 N×Mマス計算(基本)
ユーザー watarimaycry2watarimaycry2
提出日時 2020-03-30 12:24:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,564 bytes
コンパイル時間 2,798 ms
コンパイル使用メモリ 84,888 KB
実行使用メモリ 46,448 KB
最終ジャッジ日時 2024-06-11 19:16:27
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
42,564 KB
testcase_01 AC 157 ms
42,476 KB
testcase_02 AC 199 ms
44,724 KB
testcase_03 AC 190 ms
42,804 KB
testcase_04 AC 202 ms
43,820 KB
testcase_05 AC 199 ms
44,112 KB
testcase_06 AC 197 ms
43,852 KB
testcase_07 AC 188 ms
42,656 KB
testcase_08 AC 171 ms
42,472 KB
testcase_09 AC 165 ms
42,232 KB
testcase_10 WA -
testcase_11 AC 210 ms
44,936 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 186 ms
42,652 KB
testcase_15 AC 190 ms
43,096 KB
testcase_16 AC 244 ms
46,060 KB
testcase_17 WA -
testcase_18 AC 241 ms
46,160 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
        static Scanner sc = new Scanner(System.in);
        static void myout(Object t){System.out.println(t);}//standard output
        static void myerr(Object t){System.err.println(t);}//standard error
        static String getStr(){return sc.next();}
        static int getInt(){return Integer.parseInt(getStr());}
        static long getLong(){return Long.parseLong(getStr());}
        static boolean hasNext(){return sc.hasNext();}
        static char[] mySplit(String str){return str.toCharArray();}
        public static void main(String[] args){
          int N = getInt();
          int M = getInt();
          String op = getStr();
          ArrayList<Integer> mlist = new ArrayList<Integer>();
          ArrayList<Integer> nlist = new ArrayList<Integer>();
          for(int i = 0; i < M; i++){
            mlist.add(getInt());
          }
          for(int i = 0; i < N; i++){
            nlist.add(getInt());
          }
          
          for(int i = 0; i < N; i++){
            String output = "";
            for(int j = 0; j < M; j++){
              long val;
              if(op.equals("+")){
                val = nlist.get(i) + mlist.get(j);
              }else{
                val = nlist.get(i) * mlist.get(j);
              }
              if(j == 0){
                output += val;
              }else{
                output += " " + val;
              }
            }
            myout(output);
          }
        }
        //Method addition frame start

        //Method addition frame end
}
0