結果

問題 No.1972 Modulo Set
ユーザー ks2mks2m
提出日時 2022-06-10 22:22:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 2,464 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 77,624 KB
最終ジャッジ日時 2024-10-05 01:33:47
合計ジャッジ時間 14,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,120 KB
testcase_01 AC 54 ms
50,032 KB
testcase_02 AC 54 ms
50,260 KB
testcase_03 AC 162 ms
55,084 KB
testcase_04 AC 195 ms
55,912 KB
testcase_05 AC 201 ms
58,252 KB
testcase_06 AC 259 ms
60,032 KB
testcase_07 AC 282 ms
62,312 KB
testcase_08 AC 209 ms
58,092 KB
testcase_09 AC 105 ms
51,664 KB
testcase_10 AC 190 ms
55,732 KB
testcase_11 AC 279 ms
62,504 KB
testcase_12 AC 151 ms
54,280 KB
testcase_13 AC 121 ms
53,864 KB
testcase_14 AC 122 ms
53,844 KB
testcase_15 AC 304 ms
62,704 KB
testcase_16 AC 320 ms
63,380 KB
testcase_17 AC 221 ms
58,856 KB
testcase_18 AC 57 ms
49,904 KB
testcase_19 AC 322 ms
63,660 KB
testcase_20 AC 341 ms
63,364 KB
testcase_21 AC 231 ms
59,048 KB
testcase_22 AC 271 ms
62,476 KB
testcase_23 AC 421 ms
68,644 KB
testcase_24 AC 261 ms
62,516 KB
testcase_25 AC 344 ms
65,260 KB
testcase_26 AC 346 ms
63,952 KB
testcase_27 AC 489 ms
77,624 KB
testcase_28 AC 244 ms
62,216 KB
testcase_29 AC 373 ms
65,380 KB
testcase_30 AC 413 ms
66,856 KB
testcase_31 AC 116 ms
52,020 KB
testcase_32 AC 388 ms
63,852 KB
testcase_33 AC 501 ms
75,760 KB
testcase_34 AC 496 ms
75,536 KB
testcase_35 AC 493 ms
75,684 KB
testcase_36 AC 501 ms
75,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		long m = Long.parseLong(sa[1]);
		sa = br.readLine().split(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Long.parseLong(sa[i]);
		}
		br.close();

		Map<Long, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
			long k = a[i] % m;
			map.put(k, map.getOrDefault(k, 0) + 1);
		}

		long m2 = m % 2 == 0 ? m / 2 : 0;
		int ans = 0;
		Set<Long> set = new HashSet<>();
		for (long key : map.keySet()) {
			int v1 = map.get(key);
			if (key == 0 || key == m2) {
				ans++;
			} else if (!set.contains(key)) {
				set.add(m - key);
				int v2 = map.getOrDefault(m - key, 0);
				ans += Math.max(v1, v2);
			}
			set.add(key);
		}
		System.out.println(ans);
	}
}
0