結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー htensaihtensai
提出日時 2020-02-21 15:26:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 982 ms / 2,000 ms
コード長 2,212 bytes
コンパイル時間 2,840 ms
コンパイル使用メモリ 79,484 KB
実行使用メモリ 75,384 KB
最終ジャッジ日時 2024-04-27 21:29:15
合計ジャッジ時間 12,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,800 KB
testcase_01 AC 100 ms
53,080 KB
testcase_02 AC 122 ms
54,224 KB
testcase_03 AC 129 ms
53,952 KB
testcase_04 AC 134 ms
54,220 KB
testcase_05 AC 131 ms
54,184 KB
testcase_06 AC 121 ms
53,928 KB
testcase_07 AC 117 ms
54,132 KB
testcase_08 AC 117 ms
53,828 KB
testcase_09 AC 122 ms
53,892 KB
testcase_10 AC 490 ms
61,640 KB
testcase_11 AC 532 ms
60,572 KB
testcase_12 AC 972 ms
69,328 KB
testcase_13 AC 486 ms
59,976 KB
testcase_14 AC 589 ms
62,964 KB
testcase_15 AC 538 ms
59,500 KB
testcase_16 AC 600 ms
62,588 KB
testcase_17 AC 461 ms
60,432 KB
testcase_18 AC 982 ms
68,612 KB
testcase_19 AC 605 ms
59,808 KB
testcase_20 AC 844 ms
75,384 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