結果

問題 No.988 N×Mマス計算(総和)
ユーザー ks2mks2m
提出日時 2020-02-14 21:31:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 70,040 KB
最終ジャッジ日時 2024-07-06 06:57:57
合計ジャッジ時間 10,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,004 KB
testcase_01 AC 104 ms
53,644 KB
testcase_02 AC 118 ms
54,128 KB
testcase_03 AC 116 ms
54,104 KB
testcase_04 AC 125 ms
53,752 KB
testcase_05 AC 116 ms
53,928 KB
testcase_06 AC 117 ms
53,860 KB
testcase_07 AC 119 ms
54,016 KB
testcase_08 AC 125 ms
54,104 KB
testcase_09 AC 115 ms
53,816 KB
testcase_10 AC 455 ms
59,288 KB
testcase_11 AC 541 ms
59,004 KB
testcase_12 AC 623 ms
63,152 KB
testcase_13 AC 461 ms
59,148 KB
testcase_14 AC 461 ms
59,012 KB
testcase_15 AC 468 ms
59,332 KB
testcase_16 AC 552 ms
60,560 KB
testcase_17 AC 594 ms
63,344 KB
testcase_18 AC 505 ms
59,084 KB
testcase_19 AC 612 ms
61,484 KB
testcase_20 AC 632 ms
70,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int k = sc.nextInt();
		String s = sc.next();
		long[] b = new long[m];
		for (int i = 0; i < b.length; i++) {
			b[i] = sc.nextLong();
		}
		long[] a = new long[n];
		for (int i = 0; i < a.length; i++) {
			a[i] = sc.nextLong();
		}
		sc.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