結果

問題 No.1972 Modulo Set
ユーザー monnumonnu
提出日時 2022-06-10 21:40:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 3,273 ms
コンパイル使用メモリ 235,072 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-10-05 01:28:54
合計ジャッジ時間 6,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 13 ms
5,248 KB
testcase_04 AC 18 ms
5,248 KB
testcase_05 AC 21 ms
5,248 KB
testcase_06 AC 33 ms
5,248 KB
testcase_07 AC 50 ms
5,248 KB
testcase_08 AC 22 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 18 ms
5,248 KB
testcase_11 AC 47 ms
5,248 KB
testcase_12 AC 8 ms
5,248 KB
testcase_13 AC 6 ms
5,248 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 54 ms
5,632 KB
testcase_16 AC 62 ms
6,912 KB
testcase_17 AC 21 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 51 ms
6,912 KB
testcase_20 AC 62 ms
7,424 KB
testcase_21 AC 25 ms
5,248 KB
testcase_22 AC 44 ms
6,912 KB
testcase_23 AC 96 ms
12,928 KB
testcase_24 AC 36 ms
7,424 KB
testcase_25 AC 56 ms
9,344 KB
testcase_26 AC 72 ms
6,144 KB
testcase_27 AC 109 ms
13,568 KB
testcase_28 AC 36 ms
7,552 KB
testcase_29 AC 56 ms
9,600 KB
testcase_30 AC 78 ms
11,776 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 71 ms
11,136 KB
testcase_33 AC 120 ms
14,848 KB
testcase_34 AC 115 ms
14,848 KB
testcase_35 AC 114 ms
14,848 KB
testcase_36 AC 118 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define INF 1000000000000000000
#define MOD 998244353
#define MAX 500

int main(){
  int N;
  ll M;
  cin>>N>>M;
  map<ll,int> m;
  for(int i=0;i<N;i++){
    ll A;
    cin>>A;
    m[A%M]++;
  }

  ll ans=0;
  for(auto p:m){
    if((2*p.first)%M==0&&p.second>0){
      ans++;
    }else{
      if(p.second>=m[M-p.first]){
        ans+=p.second;
        m[M-p.first]=0;
      }
    }
  }
  cout<<ans<<'\n';
}
0