結果

問題 No.988 N×Mマス計算(総和)
ユーザー joybeeeejoybeeee
提出日時 2020-05-15 20:20:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 69,108 KB
最終ジャッジ日時 2024-07-06 07:45:29
合計ジャッジ時間 11,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,136 KB
testcase_01 AC 128 ms
53,596 KB
testcase_02 AC 142 ms
53,920 KB
testcase_03 AC 138 ms
54,132 KB
testcase_04 AC 140 ms
53,716 KB
testcase_05 AC 144 ms
53,992 KB
testcase_06 AC 146 ms
54,064 KB
testcase_07 AC 146 ms
53,892 KB
testcase_08 AC 144 ms
53,676 KB
testcase_09 AC 143 ms
53,944 KB
testcase_10 AC 577 ms
59,576 KB
testcase_11 AC 622 ms
58,920 KB
testcase_12 AC 781 ms
63,484 KB
testcase_13 AC 577 ms
59,352 KB
testcase_14 AC 580 ms
59,248 KB
testcase_15 AC 556 ms
59,308 KB
testcase_16 AC 730 ms
60,384 KB
testcase_17 AC 771 ms
63,360 KB
testcase_18 AC 595 ms
59,200 KB
testcase_19 AC 753 ms
62,868 KB
testcase_20 AC 848 ms
69,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int n = sc.nextInt();
      int m = sc.nextInt();
      int k = sc.nextInt();

      char op = sc.next().charAt(0);
      long sumB = 0L;
      for(int i = 0; i < m; i++)
      	sumB = (sumB + sc.nextInt()) % k;

      long res = 0L;
      if(op == '+') {
      	for(int i = 0; i < n; i++)
      		res = (res + sc.nextLong() * m % k + sumB) % k;
      } else {
      	for(int i = 0; i < n; i++)
      		res = (res + sc.nextLong() * sumB % k) % k;
      }

      System.out.println(res);
  }
}
0