結果

問題 No.1972 Modulo Set
ユーザー mnmmnm
提出日時 2022-06-12 01:58:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 78,316 KB
実行使用メモリ 11,180 KB
最終ジャッジ日時 2024-09-22 12:12:57
合計ジャッジ時間 3,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 16 ms
6,944 KB
testcase_05 WA -
testcase_06 AC 28 ms
6,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 42 ms
6,940 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 38 ms
6,940 KB
testcase_16 AC 39 ms
6,940 KB
testcase_17 AC 15 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 31 ms
6,944 KB
testcase_20 AC 39 ms
6,944 KB
testcase_21 AC 19 ms
6,940 KB
testcase_22 AC 27 ms
6,940 KB
testcase_23 AC 52 ms
8,160 KB
testcase_24 AC 23 ms
8,076 KB
testcase_25 AC 32 ms
9,056 KB
testcase_26 WA -
testcase_27 AC 55 ms
10,092 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 62 ms
11,012 KB
testcase_34 AC 64 ms
11,008 KB
testcase_35 AC 62 ms
11,180 KB
testcase_36 AC 62 ms
11,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cmath>
#include <tuple>
#include <bitset>

#define rep(i,n) for(i=0; i<n; ++i)
#define in(a) cin >> a
#define out(a,b) cout << a << b
using namespace std;
using lint = long long;

int main(void){
    lint i, j;
    lint n, m;
    in(n);
    in(m);
    vector<lint> rem(m,0);
    rep(i,n){
        lint num;
        in(num);
        rem[num%m]++;
    }
    lint cnt=0;
    if(rem[0]!=0)   cnt++;
    for(i=1; i<((m-1)/2)+1; ++i){
        lint max;
        rem[i]>rem[m-i]? max=rem[i]: max=rem[m-i];
        cnt+=max;
    }
    if((m-1)%2==1)  cnt+=rem[(m-1)/2+1];
    if(cnt<1)   cnt=1;
    out(cnt,endl);

    return 0;
}
0