結果

問題 No.1972 Modulo Set
ユーザー magstamagsta
提出日時 2021-08-04 11:54:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 181,388 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-10-05 01:19:38
合計ジャッジ時間 5,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 16 ms
5,248 KB
testcase_04 AC 22 ms
5,248 KB
testcase_05 AC 25 ms
5,248 KB
testcase_06 AC 42 ms
5,248 KB
testcase_07 AC 64 ms
5,248 KB
testcase_08 AC 27 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 22 ms
5,248 KB
testcase_11 AC 60 ms
5,248 KB
testcase_12 AC 10 ms
5,248 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 7 ms
5,248 KB
testcase_15 AC 76 ms
7,424 KB
testcase_16 AC 87 ms
9,344 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 69 ms
9,088 KB
testcase_20 AC 87 ms
9,984 KB
testcase_21 AC 34 ms
5,504 KB
testcase_22 AC 60 ms
8,704 KB
testcase_23 AC 140 ms
17,280 KB
testcase_24 AC 49 ms
8,960 KB
testcase_25 AC 76 ms
11,776 KB
testcase_26 AC 104 ms
8,448 KB
testcase_27 AC 142 ms
17,920 KB
testcase_28 AC 50 ms
9,176 KB
testcase_29 AC 78 ms
12,160 KB
testcase_30 AC 106 ms
15,360 KB
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 99 ms
14,208 KB
testcase_33 AC 186 ms
19,968 KB
testcase_34 AC 183 ms
19,712 KB
testcase_35 AC 173 ms
19,840 KB
testcase_36 AC 173 ms
19,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	long long N, M; cin >> N >> M;
	vector<long long> A(N);
	for (int i = 0; i < N; i++) cin >> A[i];

	map<long long, long long> Map;
	set<long long> Set;
	for (int i = 0; i < N; i++) {
		Map[A[i] % M]++;
		Set.insert(A[i] % M);
	}

	long long count = 0;
	while (!Set.empty()) {
		long long a = *Set.begin();
		Set.erase(Set.begin());
		if (a == 0 || a * 2 == M) {
			count++;
		}
		else {
			count += max(Map[a], Map[M - a]);
			Map[a] = 0;
			Map[M - a] = 0;
		}
	}

	cout << count << endl;
}
0