結果

問題 No.1972 Modulo Set
ユーザー HaaHaa
提出日時 2022-06-10 21:31:19
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 1,938 ms
コンパイル使用メモリ 174,720 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-04-15 08:47:08
合計ジャッジ時間 5,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 15 ms
5,376 KB
testcase_04 AC 22 ms
5,376 KB
testcase_05 AC 25 ms
5,376 KB
testcase_06 AC 38 ms
5,376 KB
testcase_07 AC 58 ms
5,376 KB
testcase_08 AC 27 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 57 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 71 ms
6,528 KB
testcase_16 AC 81 ms
7,680 KB
testcase_17 AC 26 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 64 ms
7,552 KB
testcase_20 AC 83 ms
8,320 KB
testcase_21 AC 31 ms
5,376 KB
testcase_22 AC 54 ms
7,168 KB
testcase_23 AC 130 ms
12,416 KB
testcase_24 AC 42 ms
7,148 KB
testcase_25 AC 71 ms
9,088 KB
testcase_26 AC 93 ms
7,424 KB
testcase_27 AC 142 ms
12,928 KB
testcase_28 AC 43 ms
7,120 KB
testcase_29 AC 72 ms
9,036 KB
testcase_30 AC 105 ms
11,264 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 94 ms
10,496 KB
testcase_33 AC 159 ms
14,336 KB
testcase_34 AC 160 ms
14,208 KB
testcase_35 AC 160 ms
14,336 KB
testcase_36 AC 160 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(ll i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    ll n, m; cin >> n >> m;
    VI a(n); REP(i,n) cin >> a[i];
    map<ll,int> mp;
    REP(i,n) mp[a[i]%m]++;
    set<ll> used;
    int ans=0;
    for(auto p:mp){
        if(p.first==0||p.first*2==m){
            ans+=min(1,p.second);
            continue;
        }
        if(used.find(min(p.first,m-p.first))!=used.end())
            continue;
        used.insert(min(p.first,m-p.first));
        if(mp.find(m-p.first)==mp.end())
            ans+=p.second;
        else
            ans+=max(p.second,mp[m-p.first]);
    }
    cout << ans << endl;
    return 0;
}
0