結果

問題 No.1972 Modulo Set
ユーザー kokatsukokatsu
提出日時 2022-06-10 21:34:01
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 209,180 KB
実行使用メモリ 15,016 KB
最終ジャッジ日時 2024-06-22 15:25:05
合計ジャッジ時間 5,184 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 16 ms
6,944 KB
testcase_07 AC 24 ms
9,336 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 24 ms
9,000 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 31 ms
11,192 KB
testcase_16 AC 34 ms
13,108 KB
testcase_17 AC 13 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 28 ms
11,948 KB
testcase_20 AC 33 ms
12,032 KB
testcase_21 AC 14 ms
6,940 KB
testcase_22 AC 25 ms
11,784 KB
testcase_23 AC 54 ms
12,988 KB
testcase_24 AC 21 ms
10,956 KB
testcase_25 AC 29 ms
12,632 KB
testcase_26 AC 42 ms
12,028 KB
testcase_27 AC 53 ms
15,016 KB
testcase_28 AC 21 ms
11,492 KB
testcase_29 AC 30 ms
11,972 KB
testcase_30 AC 40 ms
13,048 KB
testcase_31 AC 4 ms
6,944 KB
testcase_32 AC 35 ms
12,596 KB
testcase_33 AC 55 ms
12,912 KB
testcase_34 AC 56 ms
13,220 KB
testcase_35 AC 57 ms
12,688 KB
testcase_36 AC 56 ms
12,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N, M;
    readf("%d %d\n", N, M);

    auto A = readln.chomp.split.to!(long[]);

    long[long] list;
    foreach (a; A) ++list[a%M];

    bool[long] used;
    long res;
    foreach (key, val; list) {
        if (key in used) continue;

        if ((key * 2) % M == 0) {
            ++res;
        }
        else {
            long d = M - key, num = val;
            if (d in list) {
                if (num < list[d]) num = list[d];
                used[d] = true;
            }

            res += num;
        }

        used[key] = true;
    }

    res.writeln;
}
0