結果

問題 No.1972 Modulo Set
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2022-06-11 02:20:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 174,796 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-10-05 01:42:45
合計ジャッジ時間 9,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 26 ms
6,816 KB
testcase_04 AC 28 ms
6,816 KB
testcase_05 AC 27 ms
6,816 KB
testcase_06 AC 48 ms
6,820 KB
testcase_07 AC 68 ms
6,820 KB
testcase_08 AC 25 ms
6,816 KB
testcase_09 AC 12 ms
6,820 KB
testcase_10 AC 24 ms
6,816 KB
testcase_11 AC 66 ms
6,816 KB
testcase_12 AC 20 ms
6,820 KB
testcase_13 AC 22 ms
6,816 KB
testcase_14 AC 26 ms
6,816 KB
testcase_15 AC 139 ms
6,816 KB
testcase_16 AC 189 ms
6,816 KB
testcase_17 AC 62 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 182 ms
6,816 KB
testcase_20 AC 208 ms
6,820 KB
testcase_21 AC 67 ms
6,820 KB
testcase_22 AC 167 ms
6,816 KB
testcase_23 AC 444 ms
8,576 KB
testcase_24 AC 188 ms
6,820 KB
testcase_25 AC 291 ms
6,820 KB
testcase_26 AC 182 ms
6,816 KB
testcase_27 AC 489 ms
8,576 KB
testcase_28 AC 194 ms
6,816 KB
testcase_29 AC 300 ms
6,820 KB
testcase_30 AC 407 ms
7,552 KB
testcase_31 AC 23 ms
6,820 KB
testcase_32 AC 365 ms
7,296 KB
testcase_33 AC 539 ms
9,344 KB
testcase_34 AC 564 ms
9,472 KB
testcase_35 AC 590 ms
9,472 KB
testcase_36 AC 581 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2022.06.11 02:20:52
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;


int main() {
    int n;cin >> n;
    ll m;cin >> m;
    map<ll,int> mp;
    for (int i = 0; i < n; i++) {
        ll a;cin >> a;
        mp[a%m]++;
    }
    int ans = 0;
    for (auto p : mp) {
        if (p.first == 0) continue;
        if (mp.find(m-p.first) != mp.end()) {
            if (p.first>=m-p.first) continue;
            ans += max(p.second,mp[m-p.first]);
        }
        else {
            ans += p.second;
        }
        cerr << ans << " " << p.first << endl;
    }
    if (mp.find(0) != mp.end()) ans++;
    if (m%2==0&&mp.find(m/2)!=mp.end()) ans++;
    cout << ans << endl;
    return 0;
}
0