結果

問題 No.1972 Modulo Set
ユーザー V_MelvilleV_Melville
提出日時 2022-06-11 00:41:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 697 bytes
コンパイル時間 2,784 ms
コンパイル使用メモリ 256,288 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-21 07:53:45
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 73 ms
8,448 KB
testcase_17 AC 24 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 62 ms
8,576 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 53 ms
8,320 KB
testcase_23 AC 131 ms
16,896 KB
testcase_24 AC 46 ms
8,936 KB
testcase_25 AC 70 ms
11,904 KB
testcase_26 WA -
testcase_27 AC 138 ms
17,792 KB
testcase_28 AC 47 ms
9,216 KB
testcase_29 AC 69 ms
12,160 KB
testcase_30 AC 98 ms
15,360 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 94 ms
14,336 KB
testcase_33 AC 155 ms
19,584 KB
testcase_34 AC 153 ms
19,584 KB
testcase_35 AC 152 ms
19,712 KB
testcase_36 AC 153 ms
19,712 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<ll, int> mp;
    rep(i, n) mp[a[i]]++;
    
    set<ll> s;
    rep(i, n) {
        ll x = a[i];
        ll y = m-a[i];
        s.insert(min(x, y));
    }
    
    int ans = 0;
    for (ll x : s) {
        ll y = m-x;
        if (x == y) ans++;
        else ans += max(mp[x], mp[y]);
    }
    
    cout << ans << '\n';
    
    return 0;
}
0