結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー tentententen
提出日時 2020-12-15 13:10:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,057 ms / 2,000 ms
コード長 2,522 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 79,172 KB
実行使用メモリ 72,272 KB
最終ジャッジ日時 2024-09-20 01:38:12
合計ジャッジ時間 12,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,968 KB
testcase_01 AC 119 ms
41,188 KB
testcase_02 AC 127 ms
41,132 KB
testcase_03 AC 133 ms
41,692 KB
testcase_04 AC 129 ms
41,356 KB
testcase_05 AC 132 ms
41,380 KB
testcase_06 AC 121 ms
41,044 KB
testcase_07 AC 127 ms
41,224 KB
testcase_08 AC 123 ms
41,024 KB
testcase_09 AC 132 ms
41,524 KB
testcase_10 AC 625 ms
52,116 KB
testcase_11 AC 607 ms
49,000 KB
testcase_12 AC 1,057 ms
57,892 KB
testcase_13 AC 545 ms
48,096 KB
testcase_14 AC 661 ms
51,920 KB
testcase_15 AC 590 ms
49,036 KB
testcase_16 AC 671 ms
53,800 KB
testcase_17 AC 510 ms
49,016 KB
testcase_18 AC 937 ms
58,308 KB
testcase_19 AC 632 ms
50,360 KB
testcase_20 AC 1,030 ms
72,272 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();
        boolean isAdd = (sc.next().charAt(0) == '+');
        if (isAdd) {
            HashMap<Integer, Integer> bMods = new HashMap<>();
            for (int i = 0; i < m; i++) {
                int mod = sc.nextInt() % k;
                bMods.put(mod, bMods.getOrDefault(mod, 0) + 1);
            }
            HashMap<Integer, Integer> aMods = new HashMap<>();
            for (int i = 0; i < n; i++) {
                int mod = sc.nextInt() % k;
                aMods.put(mod, aMods.getOrDefault(mod, 0) + 1);
            }
            long ans = 0;
            for (int x : aMods.keySet()) {
                int key = (k - x) % k;
                int value = aMods.get(x);
                ans += (long)value * bMods.getOrDefault(key, 0);
            }
            System.out.println(ans);
        } else {
            long bDiv = 0;
            HashMap<Integer, Integer> bMods = new HashMap<>();
            for (int i = 0; i < m; i++) {
                int x = sc.nextInt();
                if (x % k == 0) {
                    bDiv++;
                } else {
                    int gcd = getGCD(x, k);
                    if (gcd > 1) {
                        bMods.put(gcd, bMods.getOrDefault(gcd, 0) + 1);
                    }
                }
            }
            long aDiv = 0;
            HashMap<Integer, Integer> aMods = new HashMap<>();
            for (int i = 0; i < n; i++) {
                int x = sc.nextInt();
                if (x % k == 0) {
                    aDiv++;
                } else {
                    int gcd = getGCD(x, k);
                    if (gcd > 1) {
                        aMods.put(gcd, aMods.getOrDefault(gcd, 0) + 1);
                    }
                }
            }
            long ans = bDiv * n + aDiv * (m - bDiv);
            for (int x : aMods.keySet()) {
                for (int y : bMods.keySet()) {
                    if (y % (k / x) == 0) {
                        int value = aMods.get(x);
                        ans += (long)value * bMods.get(y);
                    }
                }
            }
            System.out.println(ans);
        }
    }
    
    static int getGCD(int x, int y) {
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
}
0