結果

問題 No.1972 Modulo Set
ユーザー tentententen
提出日時 2022-06-13 11:17:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 78,836 KB
実行使用メモリ 62,444 KB
最終ジャッジ日時 2024-10-05 01:46:50
合計ジャッジ時間 10,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,248 KB
testcase_01 AC 48 ms
50,288 KB
testcase_02 AC 47 ms
50,064 KB
testcase_03 AC 145 ms
54,468 KB
testcase_04 AC 173 ms
55,792 KB
testcase_05 AC 167 ms
54,724 KB
testcase_06 AC 194 ms
55,748 KB
testcase_07 AC 231 ms
57,892 KB
testcase_08 AC 195 ms
55,532 KB
testcase_09 AC 96 ms
51,964 KB
testcase_10 AC 163 ms
54,920 KB
testcase_11 AC 236 ms
55,820 KB
testcase_12 AC 133 ms
54,208 KB
testcase_13 AC 103 ms
51,932 KB
testcase_14 AC 105 ms
51,932 KB
testcase_15 AC 245 ms
58,008 KB
testcase_16 AC 246 ms
58,248 KB
testcase_17 AC 185 ms
55,876 KB
testcase_18 AC 50 ms
50,200 KB
testcase_19 AC 243 ms
58,132 KB
testcase_20 AC 249 ms
58,136 KB
testcase_21 AC 196 ms
55,844 KB
testcase_22 AC 209 ms
58,116 KB
testcase_23 AC 276 ms
62,444 KB
testcase_24 AC 213 ms
57,720 KB
testcase_25 AC 227 ms
58,184 KB
testcase_26 AC 256 ms
60,116 KB
testcase_27 AC 302 ms
62,224 KB
testcase_28 AC 201 ms
57,376 KB
testcase_29 AC 224 ms
58,228 KB
testcase_30 AC 265 ms
60,188 KB
testcase_31 AC 105 ms
52,136 KB
testcase_32 AC 245 ms
60,392 KB
testcase_33 AC 290 ms
62,124 KB
testcase_34 AC 313 ms
62,216 KB
testcase_35 AC 298 ms
62,012 KB
testcase_36 AC 292 ms
62,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long m = sc.nextLong();
        HashMap<Long, Integer> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            long x = sc.nextLong() % m;
            counts.put(x, counts.getOrDefault(x, 0) + 1);
        }
        int sum = 0;
        for (long x : counts.keySet()) {
            if (x == 0) {
                n -= counts.get(x) - 1;
            } else if (x * 2 == m) {
                n -= counts.get(x) - 1;
            } else {
                sum += Math.min(counts.get(x), counts.getOrDefault(m - x, 0));
            }
        }
        System.out.println(n - sum / 2);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0