結果

問題 No.1972 Modulo Set
ユーザー tentententen
提出日時 2022-08-10 09:00:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 1,706 bytes
コンパイル時間 2,863 ms
コンパイル使用メモリ 78,524 KB
実行使用メモリ 53,256 KB
最終ジャッジ日時 2024-09-20 13:24:16
合計ジャッジ時間 12,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,860 KB
testcase_01 AC 46 ms
36,624 KB
testcase_02 AC 45 ms
37,120 KB
testcase_03 AC 150 ms
42,468 KB
testcase_04 AC 188 ms
44,768 KB
testcase_05 AC 187 ms
44,528 KB
testcase_06 AC 223 ms
45,580 KB
testcase_07 AC 243 ms
47,820 KB
testcase_08 AC 184 ms
44,296 KB
testcase_09 AC 99 ms
39,372 KB
testcase_10 AC 172 ms
43,756 KB
testcase_11 AC 237 ms
46,500 KB
testcase_12 AC 132 ms
41,512 KB
testcase_13 AC 110 ms
39,680 KB
testcase_14 AC 112 ms
40,024 KB
testcase_15 AC 259 ms
47,804 KB
testcase_16 AC 263 ms
48,924 KB
testcase_17 AC 197 ms
45,012 KB
testcase_18 AC 51 ms
37,196 KB
testcase_19 AC 262 ms
47,808 KB
testcase_20 AC 274 ms
49,072 KB
testcase_21 AC 194 ms
45,248 KB
testcase_22 AC 225 ms
47,420 KB
testcase_23 AC 292 ms
52,268 KB
testcase_24 AC 194 ms
47,056 KB
testcase_25 AC 223 ms
48,164 KB
testcase_26 AC 276 ms
49,704 KB
testcase_27 AC 299 ms
52,768 KB
testcase_28 AC 220 ms
47,188 KB
testcase_29 AC 232 ms
48,448 KB
testcase_30 AC 280 ms
49,796 KB
testcase_31 AC 103 ms
39,952 KB
testcase_32 AC 272 ms
49,256 KB
testcase_33 AC 324 ms
52,872 KB
testcase_34 AC 334 ms
53,256 KB
testcase_35 AC 336 ms
53,164 KB
testcase_36 AC 315 ms
52,792 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 mod = sc.nextLong() % m;
            counts.put(mod, counts.getOrDefault(mod, 0) + 1);
        }
        int ans = 0;
        int half = 0;
        for (long x : counts.keySet()) {
            if (x + x == m || x == 0) {
                continue;
            }
            if (counts.containsKey(m - x)) {
                half += Math.max(counts.get(x), counts.getOrDefault(m - x, 0));
            } else {
                ans += counts.get(x);
            }
        }
        ans += half / 2;
        if (counts.containsKey(0L)) {
            ans++;
        }
        if (m % 2 == 0 && counts.containsKey(m / 2)) {
            ans++;
        }
        System.out.println(ans);
    }
}

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 {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0