結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | watarimaycry2 |
提出日時 | 2020-03-30 12:27:05 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 206 ms / 2,000 ms |
コード長 | 1,554 bytes |
コンパイル時間 | 2,246 ms |
コンパイル使用メモリ | 79,852 KB |
実行使用メモリ | 58,604 KB |
最終ジャッジ日時 | 2024-06-11 19:20:34 |
合計ジャッジ時間 | 6,268 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
54,840 KB |
testcase_01 | AC | 130 ms
54,768 KB |
testcase_02 | AC | 180 ms
57,516 KB |
testcase_03 | AC | 173 ms
55,152 KB |
testcase_04 | AC | 177 ms
57,688 KB |
testcase_05 | AC | 170 ms
57,420 KB |
testcase_06 | AC | 167 ms
57,696 KB |
testcase_07 | AC | 159 ms
55,504 KB |
testcase_08 | AC | 148 ms
55,124 KB |
testcase_09 | AC | 131 ms
54,860 KB |
testcase_10 | AC | 137 ms
55,236 KB |
testcase_11 | AC | 174 ms
57,572 KB |
testcase_12 | AC | 201 ms
58,604 KB |
testcase_13 | AC | 166 ms
57,272 KB |
testcase_14 | AC | 150 ms
55,172 KB |
testcase_15 | AC | 179 ms
54,956 KB |
testcase_16 | AC | 206 ms
58,404 KB |
testcase_17 | AC | 196 ms
57,904 KB |
testcase_18 | AC | 205 ms
58,308 KB |
testcase_19 | AC | 206 ms
58,100 KB |
ソースコード
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<Long> mlist = new ArrayList<Long>(); ArrayList<Long> nlist = new ArrayList<Long>(); for(int i = 0; i < M; i++){ mlist.add(getLong()); } for(int i = 0; i < N; i++){ nlist.add(getLong()); } 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 }