結果

問題 No.1972 Modulo Set
ユーザー tentententen
提出日時 2022-06-13 11:11:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,408 bytes
コンパイル時間 2,632 ms
コンパイル使用メモリ 78,564 KB
実行使用メモリ 62,544 KB
最終ジャッジ日時 2024-09-25 04:40:04
合計ジャッジ時間 12,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,216 KB
testcase_01 AC 53 ms
50,464 KB
testcase_02 AC 54 ms
50,276 KB
testcase_03 AC 159 ms
55,532 KB
testcase_04 AC 178 ms
55,216 KB
testcase_05 WA -
testcase_06 AC 217 ms
56,192 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 103 ms
51,900 KB
testcase_10 WA -
testcase_11 AC 263 ms
56,120 KB
testcase_12 AC 147 ms
54,608 KB
testcase_13 AC 112 ms
52,096 KB
testcase_14 AC 117 ms
52,020 KB
testcase_15 AC 277 ms
58,364 KB
testcase_16 AC 279 ms
58,368 KB
testcase_17 AC 212 ms
55,976 KB
testcase_18 AC 54 ms
50,460 KB
testcase_19 AC 266 ms
58,252 KB
testcase_20 AC 286 ms
58,444 KB
testcase_21 AC 200 ms
56,024 KB
testcase_22 AC 245 ms
58,292 KB
testcase_23 AC 320 ms
62,028 KB
testcase_24 AC 239 ms
58,364 KB
testcase_25 AC 258 ms
58,236 KB
testcase_26 WA -
testcase_27 AC 346 ms
61,916 KB
testcase_28 AC 231 ms
58,264 KB
testcase_29 AC 265 ms
58,304 KB
testcase_30 AC 297 ms
60,304 KB
testcase_31 AC 114 ms
51,968 KB
testcase_32 AC 303 ms
60,540 KB
testcase_33 AC 350 ms
62,248 KB
testcase_34 AC 341 ms
62,360 KB
testcase_35 AC 355 ms
62,544 KB
testcase_36 AC 359 ms
62,444 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 {
                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