結果

問題 No.1972 Modulo Set
ユーザー tentententen
提出日時 2022-09-27 10:25:40
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,645 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 79,300 KB
実行使用メモリ 62,984 KB
最終ジャッジ日時 2024-06-02 00:54:35
合計ジャッジ時間 11,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,440 KB
testcase_01 AC 48 ms
50,568 KB
testcase_02 AC 47 ms
50,204 KB
testcase_03 AC 155 ms
55,520 KB
testcase_04 AC 167 ms
55,032 KB
testcase_05 AC 174 ms
55,588 KB
testcase_06 AC 203 ms
56,148 KB
testcase_07 AC 255 ms
57,872 KB
testcase_08 AC 185 ms
55,992 KB
testcase_09 AC 101 ms
52,096 KB
testcase_10 AC 187 ms
55,884 KB
testcase_11 AC 241 ms
56,604 KB
testcase_12 AC 130 ms
54,392 KB
testcase_13 AC 110 ms
52,104 KB
testcase_14 AC 111 ms
52,068 KB
testcase_15 AC 254 ms
58,712 KB
testcase_16 AC 267 ms
58,900 KB
testcase_17 AC 169 ms
55,908 KB
testcase_18 AC 52 ms
50,368 KB
testcase_19 AC 257 ms
58,632 KB
testcase_20 AC 268 ms
58,832 KB
testcase_21 AC 208 ms
56,092 KB
testcase_22 AC 225 ms
58,348 KB
testcase_23 AC 300 ms
62,584 KB
testcase_24 AC 224 ms
58,468 KB
testcase_25 AC 240 ms
58,500 KB
testcase_26 AC 288 ms
60,744 KB
testcase_27 AC 314 ms
62,924 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 301 ms
62,736 KB
testcase_34 AC 312 ms
62,772 KB
testcase_35 AC 316 ms
62,488 KB
testcase_36 AC 318 ms
62,984 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.nextInt();
        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