結果

問題 No.1972 Modulo Set
ユーザー tentententen
提出日時 2022-09-27 10:26:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 1,646 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 78,448 KB
実行使用メモリ 62,892 KB
最終ジャッジ日時 2024-06-02 00:54:47
合計ジャッジ時間 10,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,144 KB
testcase_01 AC 49 ms
50,440 KB
testcase_02 AC 49 ms
50,072 KB
testcase_03 AC 145 ms
54,828 KB
testcase_04 AC 174 ms
56,084 KB
testcase_05 AC 182 ms
54,680 KB
testcase_06 AC 208 ms
56,044 KB
testcase_07 AC 240 ms
57,788 KB
testcase_08 AC 178 ms
55,744 KB
testcase_09 AC 98 ms
52,156 KB
testcase_10 AC 190 ms
56,024 KB
testcase_11 AC 249 ms
56,308 KB
testcase_12 AC 138 ms
54,476 KB
testcase_13 AC 109 ms
52,184 KB
testcase_14 AC 99 ms
52,236 KB
testcase_15 AC 255 ms
58,520 KB
testcase_16 AC 261 ms
58,732 KB
testcase_17 AC 196 ms
56,180 KB
testcase_18 AC 51 ms
50,556 KB
testcase_19 AC 236 ms
58,288 KB
testcase_20 AC 258 ms
58,636 KB
testcase_21 AC 209 ms
56,212 KB
testcase_22 AC 227 ms
58,536 KB
testcase_23 AC 296 ms
62,464 KB
testcase_24 AC 221 ms
58,468 KB
testcase_25 AC 223 ms
58,692 KB
testcase_26 AC 279 ms
60,812 KB
testcase_27 AC 296 ms
62,704 KB
testcase_28 AC 217 ms
58,340 KB
testcase_29 AC 232 ms
58,460 KB
testcase_30 AC 271 ms
60,848 KB
testcase_31 AC 107 ms
52,192 KB
testcase_32 AC 262 ms
60,760 KB
testcase_33 AC 310 ms
62,688 KB
testcase_34 AC 305 ms
62,748 KB
testcase_35 AC 303 ms
62,892 KB
testcase_36 AC 298 ms
62,860 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;
        for (long x : counts.keySet()) {
            if (x == 0) {
                ans += 2;
            } else if (x * 2 == m) {
                ans += 2;
            } else {
                if (counts.containsKey(m - x)) {
                    ans += Math.max(counts.get(x), counts.get(m - x));
                } else {
                    ans += counts.get(x) * 2;
                }
            }
        }
        System.out.println(ans / 2);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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