結果

問題 No.1972 Modulo Set
ユーザー HaaHaa
提出日時 2022-06-10 21:26:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 6,237 ms
コンパイル使用メモリ 179,904 KB
実行使用メモリ 19,652 KB
最終ジャッジ日時 2023-10-21 04:50:40
合計ジャッジ時間 5,605 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 5 ms
4,348 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 7 ms
4,372 KB
testcase_14 AC 7 ms
4,396 KB
testcase_15 WA -
testcase_16 AC 78 ms
8,564 KB
testcase_17 AC 24 ms
5,112 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 67 ms
8,564 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 58 ms
8,360 KB
testcase_23 AC 137 ms
17,012 KB
testcase_24 AC 49 ms
9,036 KB
testcase_25 AC 79 ms
11,788 KB
testcase_26 WA -
testcase_27 AC 145 ms
17,804 KB
testcase_28 AC 52 ms
9,276 KB
testcase_29 AC 84 ms
12,260 KB
testcase_30 AC 117 ms
15,428 KB
testcase_31 AC 6 ms
4,364 KB
testcase_32 AC 106 ms
14,372 KB
testcase_33 AC 164 ms
19,652 KB
testcase_34 AC 165 ms
19,652 KB
testcase_35 AC 165 ms
19,652 KB
testcase_36 AC 165 ms
19,652 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(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