結果

問題 No.1972 Modulo Set
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-28 21:52:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 216,196 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-28 21:52:55
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 17 ms
6,824 KB
testcase_04 AC 23 ms
6,820 KB
testcase_05 AC 26 ms
6,816 KB
testcase_06 AC 43 ms
6,816 KB
testcase_07 AC 66 ms
6,816 KB
testcase_08 AC 27 ms
6,816 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 23 ms
6,816 KB
testcase_11 AC 65 ms
6,816 KB
testcase_12 AC 12 ms
6,820 KB
testcase_13 AC 7 ms
6,820 KB
testcase_14 AC 8 ms
6,820 KB
testcase_15 AC 86 ms
8,704 KB
testcase_16 AC 119 ms
10,368 KB
testcase_17 AC 32 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 80 ms
9,984 KB
testcase_20 AC 105 ms
11,136 KB
testcase_21 AC 39 ms
6,816 KB
testcase_22 AC 68 ms
9,216 KB
testcase_23 AC 159 ms
16,512 KB
testcase_24 AC 52 ms
8,576 KB
testcase_25 AC 85 ms
11,264 KB
testcase_26 AC 114 ms
10,240 KB
testcase_27 AC 171 ms
17,280 KB
testcase_28 AC 55 ms
8,792 KB
testcase_29 AC 101 ms
11,264 KB
testcase_30 AC 134 ms
14,208 KB
testcase_31 AC 6 ms
6,816 KB
testcase_32 AC 110 ms
13,184 KB
testcase_33 AC 190 ms
18,816 KB
testcase_34 AC 191 ms
18,816 KB
testcase_35 AC 198 ms
18,944 KB
testcase_36 AC 201 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;
        }
        
        if (i * 2 == M) {
            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