結果

問題 No.988 N×Mマス計算(総和)
ユーザー ks2mks2m
提出日時 2020-02-14 21:37:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 1,673 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 64,452 KB
最終ジャッジ日時 2024-07-06 07:02:29
合計ジャッジ時間 5,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
49,880 KB
testcase_01 AC 45 ms
49,928 KB
testcase_02 AC 47 ms
50,288 KB
testcase_03 AC 46 ms
49,992 KB
testcase_04 AC 45 ms
50,328 KB
testcase_05 AC 45 ms
49,848 KB
testcase_06 AC 45 ms
50,084 KB
testcase_07 AC 45 ms
50,080 KB
testcase_08 AC 45 ms
50,212 KB
testcase_09 AC 44 ms
50,176 KB
testcase_10 AC 168 ms
56,064 KB
testcase_11 AC 201 ms
60,488 KB
testcase_12 AC 220 ms
62,668 KB
testcase_13 AC 199 ms
60,584 KB
testcase_14 AC 175 ms
59,776 KB
testcase_15 AC 131 ms
54,864 KB
testcase_16 AC 218 ms
60,244 KB
testcase_17 AC 232 ms
62,368 KB
testcase_18 AC 189 ms
60,172 KB
testcase_19 AC 224 ms
62,412 KB
testcase_20 AC 243 ms
64,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		int k = Integer.parseInt(sa[2]);
		sa = br.readLine().split(" ");
		String s = sa[0];
		long[] b = new long[m];
		for (int i = 0; i < b.length; i++) {
			b[i] = Long.parseLong(sa[i + 1]);
		}
		long[] a = new long[n];
		for (int i = 0; i < a.length; i++) {
			a[i] = Long.parseLong(br.readLine());
		}
		br.close();

		long ans = 0;
		long suma = 0;
		for (int i = 0; i < a.length; i++) {
			suma += a[i];
		}
		long sumb = 0;
		for (int i = 0; i < b.length; i++) {
			sumb += b[i];
		}
		suma %= k;
		sumb %= k;
		if ("+".equals(s)) {
			ans = suma * m + sumb * n;
		} else {
			ans = suma * sumb;
		}
		ans %= k;
		System.out.println(ans);
	}
}
0