結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー htensaihtensai
提出日時 2020-02-21 15:26:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,210 ms / 2,000 ms
コード長 2,212 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 79,720 KB
実行使用メモリ 72,296 KB
最終ジャッジ日時 2024-11-16 03:20:24
合計ジャッジ時間 14,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,176 KB
testcase_01 AC 139 ms
54,052 KB
testcase_02 AC 148 ms
54,180 KB
testcase_03 AC 152 ms
54,252 KB
testcase_04 AC 148 ms
54,508 KB
testcase_05 AC 150 ms
54,228 KB
testcase_06 AC 147 ms
54,300 KB
testcase_07 AC 152 ms
54,296 KB
testcase_08 AC 148 ms
54,584 KB
testcase_09 AC 151 ms
54,304 KB
testcase_10 AC 677 ms
62,484 KB
testcase_11 AC 783 ms
60,480 KB
testcase_12 AC 1,210 ms
68,992 KB
testcase_13 AC 643 ms
59,360 KB
testcase_14 AC 759 ms
62,100 KB
testcase_15 AC 646 ms
59,524 KB
testcase_16 AC 734 ms
62,324 KB
testcase_17 AC 577 ms
59,652 KB
testcase_18 AC 1,205 ms
69,540 KB
testcase_19 AC 775 ms
60,056 KB
testcase_20 AC 1,084 ms
72,296 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);
        if (op == '+') {
            HashMap<Integer, Integer> map = new HashMap<>();
            for (int i = 0; i < m; i ++ ){
                int mod = sc.nextInt() % k;
                if (map.containsKey(mod)) {
                    map.put(mod, map.get(mod) + 1);
                } else {
                    map.put(mod, 1);
                }
            }
            long count = 0;
            for (int i = 0; i < n; i++) {
                int mod = sc.nextInt() % k;
                if (map.containsKey((k - mod) % k)) {
                    count += map.get((k - mod) % k);
                }
            }
            System.out.println(count);
        } else {
            HashMap<Integer, Integer> mapB = new HashMap<>();
            for (int i = 0; i < m; i ++ ){
                int gd = gcd(sc.nextInt(), k);
                if (mapB.containsKey(gd)) {
                    mapB.put(gd, mapB.get(gd) + 1);
                } else {
                    mapB.put(gd, 1);
                }
            }
            HashMap<Integer, Integer> mapA = new HashMap<>();
            for (int i = 0; i < n; i++) {
                int gd = gcd(sc.nextInt(), k);
                if (mapA.containsKey(gd)) {
                    mapA.put(gd, mapA.get(gd) + 1);
                } else {
                    mapA.put(gd, 1);
                }
            }
            long count = 0;
            for (Map.Entry<Integer, Integer> entryA : mapA.entrySet()) {
                for (Map.Entry<Integer, Integer> entryB : mapB.entrySet()) {
                    if ((long)entryA.getKey() * entryB.getKey() % k == 0) {
                        count += (long)entryA.getValue() * entryB.getValue();
                    }
                }
            }
            System.out.println(count);
        }
    }
    
    static int gcd(int x, int y) {
        if (x % y == 0) {
            return y;
        } else {
            return gcd(y, x % y);
        }
    }
}
0