結果

問題 No.1972 Modulo Set
ユーザー tentententen
提出日時 2024-07-30 09:51:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 1,714 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 79,592 KB
実行使用メモリ 63,268 KB
最終ジャッジ日時 2024-07-30 09:51:27
合計ジャッジ時間 12,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,208 KB
testcase_01 AC 51 ms
50,372 KB
testcase_02 AC 55 ms
50,400 KB
testcase_03 AC 154 ms
54,268 KB
testcase_04 AC 185 ms
55,504 KB
testcase_05 AC 208 ms
56,080 KB
testcase_06 AC 200 ms
56,136 KB
testcase_07 AC 246 ms
58,472 KB
testcase_08 AC 181 ms
54,872 KB
testcase_09 AC 103 ms
52,048 KB
testcase_10 AC 187 ms
55,956 KB
testcase_11 AC 261 ms
56,476 KB
testcase_12 AC 132 ms
54,772 KB
testcase_13 AC 112 ms
52,100 KB
testcase_14 AC 113 ms
52,164 KB
testcase_15 AC 265 ms
58,516 KB
testcase_16 AC 257 ms
58,824 KB
testcase_17 AC 214 ms
56,116 KB
testcase_18 AC 54 ms
50,472 KB
testcase_19 AC 249 ms
58,508 KB
testcase_20 AC 280 ms
58,760 KB
testcase_21 AC 202 ms
56,084 KB
testcase_22 AC 221 ms
58,516 KB
testcase_23 AC 336 ms
62,836 KB
testcase_24 AC 231 ms
58,344 KB
testcase_25 AC 243 ms
58,380 KB
testcase_26 AC 295 ms
60,580 KB
testcase_27 AC 321 ms
62,780 KB
testcase_28 AC 219 ms
58,348 KB
testcase_29 AC 252 ms
58,540 KB
testcase_30 AC 290 ms
60,660 KB
testcase_31 AC 108 ms
52,244 KB
testcase_32 AC 279 ms
60,760 KB
testcase_33 AC 321 ms
63,008 KB
testcase_34 AC 325 ms
62,764 KB
testcase_35 AC 334 ms
63,268 KB
testcase_36 AC 321 ms
63,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

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


0