結果

問題 No.1972 Modulo Set
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-28 21:50:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 217,340 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-10-28 21:50:33
合計ジャッジ時間 7,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 17 ms
6,816 KB
testcase_04 AC 24 ms
6,816 KB
testcase_05 WA -
testcase_06 AC 42 ms
6,816 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 5 ms
6,820 KB
testcase_10 WA -
testcase_11 AC 65 ms
6,820 KB
testcase_12 AC 12 ms
6,820 KB
testcase_13 AC 8 ms
6,820 KB
testcase_14 AC 8 ms
6,820 KB
testcase_15 AC 85 ms
8,576 KB
testcase_16 AC 98 ms
10,496 KB
testcase_17 AC 31 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 83 ms
9,856 KB
testcase_20 AC 101 ms
11,136 KB
testcase_21 AC 38 ms
6,816 KB
testcase_22 AC 67 ms
9,344 KB
testcase_23 AC 162 ms
16,640 KB
testcase_24 AC 53 ms
8,568 KB
testcase_25 AC 85 ms
11,264 KB
testcase_26 WA -
testcase_27 AC 169 ms
17,152 KB
testcase_28 AC 53 ms
8,576 KB
testcase_29 AC 86 ms
11,264 KB
testcase_30 AC 128 ms
14,208 KB
testcase_31 AC 7 ms
6,816 KB
testcase_32 AC 112 ms
13,312 KB
testcase_33 AC 214 ms
18,816 KB
testcase_34 AC 194 ms
18,816 KB
testcase_35 AC 192 ms
18,816 KB
testcase_36 AC 192 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

int main() {
    cin.tie(nullptr);
    
    ll N, M;
    cin >> N >> M;
    vector<ll> A(N);
    rep(i, 0, N) cin >> A[i];
    rep(i, 0, N) A[i] %= M;
    
    set<ll> s;
    map<ll, int> m;
    rep(i, 0, N) {
        s.insert(A[i]);
        m[A[i]]++;
    }
    
    ll ans = 0;
    set<ll> seen;
    for (ll i : s) {
        if (seen.count(i)) continue;
        
        if (i == 0) {
            ans++;
            continue;
        }
        
        seen.insert(i);
        
        if (s.count(M - i)) {
            ans += max(m[i], m[M - i]);
            seen.insert(M - i);
        } else {
            ans += m[i];
        }
    }
    
    cout << ans << '\n';
}
0