結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー htensaihtensai
提出日時 2020-02-21 12:47:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,200 bytes
コンパイル時間 5,478 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 63,608 KB
最終ジャッジ日時 2024-11-16 03:18:52
合計ジャッジ時間 15,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,096 KB
testcase_01 AC 143 ms
54,104 KB
testcase_02 AC 151 ms
53,884 KB
testcase_03 AC 154 ms
54,256 KB
testcase_04 AC 150 ms
53,780 KB
testcase_05 AC 157 ms
54,180 KB
testcase_06 AC 153 ms
53,852 KB
testcase_07 AC 158 ms
54,184 KB
testcase_08 AC 152 ms
54,344 KB
testcase_09 AC 148 ms
54,168 KB
testcase_10 AC 672 ms
61,956 KB
testcase_11 AC 743 ms
49,292 KB
testcase_12 AC 1,215 ms
57,712 KB
testcase_13 AC 663 ms
48,592 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 728 ms
51,644 KB
testcase_17 WA -
testcase_18 AC 1,218 ms
58,448 KB
testcase_19 AC 720 ms
48,732 KB
testcase_20 AC 1,085 ms
63,608 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)) {
                    count += map.get(k - mod);
                }
            }
            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