結果

問題 No.1972 Modulo Set
ユーザー V_MelvilleV_Melville
提出日時 2022-06-11 00:33:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 712 bytes
コンパイル時間 4,119 ms
コンパイル使用メモリ 259,004 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-09-21 07:44:05
合計ジャッジ時間 6,976 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 15 ms
6,940 KB
testcase_04 AC 22 ms
6,944 KB
testcase_05 AC 25 ms
6,940 KB
testcase_06 AC 39 ms
6,944 KB
testcase_07 AC 60 ms
6,940 KB
testcase_08 AC 27 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 22 ms
6,944 KB
testcase_11 AC 60 ms
6,944 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 67 ms
6,940 KB
testcase_16 AC 75 ms
7,680 KB
testcase_17 AC 26 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 64 ms
7,808 KB
testcase_20 AC 79 ms
8,320 KB
testcase_21 AC 32 ms
6,940 KB
testcase_22 AC 53 ms
7,424 KB
testcase_23 AC 138 ms
14,464 KB
testcase_24 AC 46 ms
7,948 KB
testcase_25 AC 78 ms
10,368 KB
testcase_26 AC 92 ms
7,040 KB
testcase_27 AC 145 ms
15,360 KB
testcase_28 AC 49 ms
8,148 KB
testcase_29 AC 74 ms
10,568 KB
testcase_30 AC 113 ms
13,312 KB
testcase_31 AC 6 ms
6,940 KB
testcase_32 WA -
testcase_33 AC 168 ms
16,896 KB
testcase_34 AC 169 ms
16,896 KB
testcase_35 AC 163 ms
16,768 KB
testcase_36 AC 167 ms
16,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::min;
using std::max;
using std::set;
using std::map;
using std::vector;
using ll = long long;

int main() {
    int n; 
    ll m;
    cin >> n >> m;
    
    vector<ll> a(n);
    rep(i, n) cin >> a[i];
    rep(i, n) a[i] %= m;
    
    map<int, int> mp;
    rep(i, n) mp[a[i]]++;
    
    set<int> s;
    rep(i, n) {
        int x = a[i];
        int y = m-a[i];
        s.insert(min(x, y));
    }
    
    ll ans = 0;
    for (int x : s) {
        int y = m-x;
        if (x == 0 or x == y) ans++;
        else ans += max(mp[x], mp[y]);
    }
    
    cout << ans << '\n';
    
    return 0;
}
0