結果

問題 No.1972 Modulo Set
ユーザー erbowlerbowl
提出日時 2022-08-07 20:15:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 216,536 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-09-17 12:35:56
合計ジャッジ時間 5,780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 18 ms
5,376 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 34 ms
5,376 KB
testcase_07 AC 54 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 19 ms
5,376 KB
testcase_11 AC 50 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 68 ms
7,808 KB
testcase_16 AC 83 ms
10,240 KB
testcase_17 AC 27 ms
5,760 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 70 ms
10,624 KB
testcase_20 AC 84 ms
11,520 KB
testcase_21 AC 32 ms
5,888 KB
testcase_22 AC 59 ms
10,240 KB
testcase_23 AC 154 ms
22,400 KB
testcase_24 AC 56 ms
11,392 KB
testcase_25 AC 88 ms
15,232 KB
testcase_26 AC 86 ms
8,832 KB
testcase_27 AC 161 ms
23,552 KB
testcase_28 AC 56 ms
11,648 KB
testcase_29 AC 92 ms
15,744 KB
testcase_30 AC 138 ms
20,224 KB
testcase_31 AC 7 ms
5,376 KB
testcase_32 AC 127 ms
18,688 KB
testcase_33 AC 182 ms
26,112 KB
testcase_34 AC 180 ms
26,112 KB
testcase_35 AC 177 ms
26,240 KB
testcase_36 AC 187 ms
26,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n,m;
    std::cin >> n>>m;
    map<ll,ll> used;
    ll ans = 0;
    for (int i = 0; i < n; i++) {
        ll a;
        std::cin >> a;
        used[a%m]++;
    }
    map<ll,bool> u;
    for (auto e : used) {
        if(e.first*2%m==0){
            ans++;
            u[e.first]=true;
        }else{
            if(!u[e.first]){
                ans += max(used[e.first],used[m-e.first]);
                u[e.first]=true;
                u[m-e.first]=true;
            }
        }
    }
    std::cout << ans << std::endl;
}
0