結果

問題 No.1972 Modulo Set
ユーザー rurunrurun
提出日時 2022-11-18 15:23:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 175,696 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-09-19 21:31:06
合計ジャッジ時間 5,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 58 ms
6,528 KB
testcase_17 AC 22 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 46 ms
6,144 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
5,760 KB
testcase_23 AC 78 ms
8,960 KB
testcase_24 AC 28 ms
5,676 KB
testcase_25 AC 44 ms
6,784 KB
testcase_26 WA -
testcase_27 AC 80 ms
9,216 KB
testcase_28 AC 30 ms
5,712 KB
testcase_29 AC 42 ms
6,704 KB
testcase_30 AC 59 ms
7,936 KB
testcase_31 AC 5 ms
5,376 KB
testcase_32 AC 55 ms
7,552 KB
testcase_33 AC 91 ms
10,112 KB
testcase_34 AC 92 ms
9,984 KB
testcase_35 AC 91 ms
9,984 KB
testcase_36 AC 95 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
int main() {
  lint n, m;
  cin >> n >> m;
  vector<lint> vec(n);
  for (int i = 0; i < n; i++) cin >> vec[i];
  map<lint, lint> ma;
  for (int i = 0; i < n; i++) ma[vec[i]%m]++;
  lint ans = 0;
  for (auto pa : ma) {
    lint x = pa.first;
    lint y = pa.second;
    if (m-x == x) ans++;
    else if (ma.count(m-x)) {
      if (m-x < x) continue;
      else ans += max(y, ma.at(m-x));
    }
    else ans += y;
    /*
    if (m-x == x) ans++;
    else if (m-x < x) break;
    else {
      if (ma.count(m-x)) {
        ans += max(ma.at(m-x), y);
      }
    }
    //*/
  }
  cout << ans << endl;
}
0