結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 14 ms
5,376 KB
testcase_04 AC 21 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 37 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 55 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 65 ms
6,912 KB
testcase_16 AC 74 ms
8,448 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 64 ms
8,704 KB
testcase_20 AC 79 ms
9,344 KB
testcase_21 AC 30 ms
5,376 KB
testcase_22 AC 57 ms
8,448 KB
testcase_23 AC 140 ms
16,896 KB
testcase_24 AC 50 ms
8,832 KB
testcase_25 AC 79 ms
11,648 KB
testcase_26 WA -
testcase_27 AC 143 ms
17,792 KB
testcase_28 AC 53 ms
9,172 KB
testcase_29 AC 85 ms
11,904 KB
testcase_30 AC 119 ms
15,232 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 109 ms
14,208 KB
testcase_33 AC 168 ms
19,584 KB
testcase_34 AC 175 ms
19,584 KB
testcase_35 AC 166 ms
19,712 KB
testcase_36 AC 167 ms
19,584 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){
            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));
        ans+=max(p.second,mp[m-p.first]);
    }
    cout << ans << endl;
    return 0;
}
0