結果

問題 No.1972 Modulo Set
ユーザー mmn15277198mmn15277198
提出日時 2022-08-04 23:53:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 1,760 ms
コンパイル使用メモリ 177,548 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-09-14 20:18:51
合計ジャッジ時間 7,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 18 ms
5,376 KB
testcase_04 AC 25 ms
5,376 KB
testcase_05 AC 27 ms
5,376 KB
testcase_06 AC 44 ms
5,376 KB
testcase_07 AC 69 ms
5,376 KB
testcase_08 AC 29 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 69 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 102 ms
8,064 KB
testcase_16 AC 127 ms
10,624 KB
testcase_17 AC 36 ms
5,556 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 111 ms
10,880 KB
testcase_20 AC 139 ms
12,032 KB
testcase_21 AC 44 ms
6,020 KB
testcase_22 AC 96 ms
10,496 KB
testcase_23 AC 315 ms
22,784 KB
testcase_24 AC 93 ms
11,396 KB
testcase_25 AC 164 ms
15,488 KB
testcase_26 AC 137 ms
9,344 KB
testcase_27 AC 348 ms
23,936 KB
testcase_28 AC 97 ms
11,616 KB
testcase_29 AC 171 ms
15,872 KB
testcase_30 AC 260 ms
20,608 KB
testcase_31 AC 8 ms
5,376 KB
testcase_32 AC 228 ms
18,944 KB
testcase_33 AC 420 ms
26,624 KB
testcase_34 AC 405 ms
26,624 KB
testcase_35 AC 391 ms
26,624 KB
testcase_36 AC 411 ms
26,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  int n;
  long long m;
  cin >> n >> m;
  vector<long long> a(n);
  map<long long, int> mp;
  for (int i = 0; i < n; i++) {
    cin >> a[i];
    a[i] %= m;
    mp[a[i]]++;
  }
  long long ans = 0;
  bool ok1 = false;
  bool ok2 = false;
  map<long long, int> used;
  for (int i = 0; i < n; i++) {
    if (used[a[i]]) continue;
    if (a[i] * 2 == m) ok1 = true;
    else if (a[i] == 0) ok2 = true;
    else ans += max(mp[a[i]], mp[m - a[i]]);
    used[a[i]]++;
    used[m - a[i]]++;
  }
  ans += ok1 + ok2;
  cout << ans << endl;
  return 0;
}
0