結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | ParSA |
提出日時 | 2020-02-14 22:10:30 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 808 bytes |
コンパイル時間 | 2,189 ms |
コンパイル使用メモリ | 77,576 KB |
実行使用メモリ | 54,456 KB |
最終ジャッジ日時 | 2024-07-06 07:17:55 |
合計ジャッジ時間 | 7,902 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,128 KB |
testcase_01 | AC | 133 ms
53,936 KB |
testcase_02 | AC | 147 ms
54,092 KB |
testcase_03 | AC | 140 ms
53,752 KB |
testcase_04 | AC | 140 ms
54,456 KB |
testcase_05 | AC | 146 ms
54,016 KB |
testcase_06 | AC | 148 ms
54,100 KB |
testcase_07 | AC | 146 ms
54,164 KB |
testcase_08 | AC | 142 ms
54,132 KB |
testcase_09 | AC | 142 ms
53,912 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import java.util.Scanner; 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列 int k = stdIn.nextInt(); //割る値 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(); } long sum = 0; if(op.equals("+")) { for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { sum += (long)a[i]+b[j]; } } sum%=k; }else { for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { sum += ((long)a[i] * b[j]) % k; } } sum %= k; } System.out.println(sum); } }