結果

問題 No.1972 Modulo Set
ユーザー kuraraberukuraraberu
提出日時 2022-06-11 04:02:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,007 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 180,876 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-21 11:28:16
合計ジャッジ時間 5,415 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 15 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 25 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 60 ms
5,376 KB
testcase_08 AC 26 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 21 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 82 ms
8,448 KB
testcase_17 AC 26 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 84 ms
9,344 KB
testcase_21 AC 33 ms
5,376 KB
testcase_22 AC 59 ms
8,448 KB
testcase_23 AC 138 ms
17,024 KB
testcase_24 AC 48 ms
8,832 KB
testcase_25 AC 76 ms
11,904 KB
testcase_26 AC 103 ms
7,808 KB
testcase_27 AC 143 ms
17,920 KB
testcase_28 AC 47 ms
9,304 KB
testcase_29 AC 74 ms
12,032 KB
testcase_30 AC 106 ms
15,360 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 94 ms
14,208 KB
testcase_33 AC 167 ms
19,584 KB
testcase_34 AC 163 ms
19,712 KB
testcase_35 AC 169 ms
19,584 KB
testcase_36 AC 166 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef long long ll;

// aよりもbが大きいならばaをbで更新する
// (更新されたならばtrueを返す)
template <typename T>
bool chmax(T &a, const T& b) {
  if (a < b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}
// aよりもbが小さいならばaをbで更新する
// (更新されたならばtrueを返す)
template <typename T>
bool chmin(T &a, const T& b) {
  if (a > b) {
    a = b;  // aをbで更新
    return true;
  }
  return false;
}

int main(){
    ll N,M;
    cin>>N>>M;
    vector<ll> a(N);
    set<ll> se;
    map<ll,ll> ma;
    for(int i=0;i<N;++i){
        ll a;
        cin>>a;
        a%=M;
        ma[a]++;
        a = min(a,M-a);
        se.insert(a);
    }
    ll ans=0;
    for(auto a:se){
        if(a==0||a==M/2){
            ans++;
        }
        else{
            ans+=max(ma[a],ma[M-a]);
        }
    }
    cout<<ans<<endl;
}
0