結果

問題 No.1972 Modulo Set
ユーザー Nzt3Nzt3
提出日時 2022-06-11 03:06:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 174,668 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-10-05 01:42:20
合計ジャッジ時間 4,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 9 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 14 ms
6,816 KB
testcase_06 AC 23 ms
6,820 KB
testcase_07 AC 34 ms
6,820 KB
testcase_08 AC 15 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 12 ms
6,816 KB
testcase_11 AC 36 ms
6,824 KB
testcase_12 AC 6 ms
6,816 KB
testcase_13 AC 5 ms
6,816 KB
testcase_14 AC 5 ms
6,820 KB
testcase_15 AC 44 ms
6,820 KB
testcase_16 AC 53 ms
6,820 KB
testcase_17 AC 16 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 51 ms
7,040 KB
testcase_20 AC 60 ms
7,424 KB
testcase_21 AC 19 ms
6,820 KB
testcase_22 AC 37 ms
6,824 KB
testcase_23 AC 100 ms
12,928 KB
testcase_24 AC 31 ms
7,296 KB
testcase_25 AC 51 ms
9,344 KB
testcase_26 AC 72 ms
6,820 KB
testcase_27 AC 126 ms
13,440 KB
testcase_28 AC 33 ms
7,424 KB
testcase_29 AC 51 ms
9,600 KB
testcase_30 AC 83 ms
11,904 KB
testcase_31 AC 4 ms
6,816 KB
testcase_32 AC 79 ms
11,136 KB
testcase_33 AC 131 ms
14,848 KB
testcase_34 AC 148 ms
14,720 KB
testcase_35 AC 137 ms
14,848 KB
testcase_36 AC 128 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  long long N,M;
  cin>>N>>M;
  map<long long,int>cnt;
  for(int i=0;i<N;i++){
    long long A;
    cin>>A;
    cnt[A%M]+=1;
    cnt[(M-A%M)%M]+=0;
  }
  int ans=0;
  for(auto i:cnt){
    if(i.first>M/2)continue;
    if(i.first*2==M||i.first==0){
      ans+=min(1,i.second);
    }else{
      ans+=max(i.second,cnt[M-i.first]);
    }
  }
  cout<<ans<<'\n';
}
0