結果

問題 No.1972 Modulo Set
ユーザー Issei MoriIssei Mori
提出日時 2022-06-10 21:37:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 126,136 KB
最終ジャッジ日時 2024-09-21 06:04:21
合計ジャッジ時間 4,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,384 KB
testcase_01 AC 42 ms
53,540 KB
testcase_02 AC 40 ms
55,184 KB
testcase_03 AC 59 ms
72,264 KB
testcase_04 AC 64 ms
74,048 KB
testcase_05 WA -
testcase_06 AC 69 ms
81,580 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 56 ms
67,440 KB
testcase_10 WA -
testcase_11 AC 82 ms
88,768 KB
testcase_12 AC 58 ms
70,532 KB
testcase_13 AC 54 ms
68,156 KB
testcase_14 AC 58 ms
68,936 KB
testcase_15 AC 92 ms
92,520 KB
testcase_16 AC 102 ms
94,656 KB
testcase_17 AC 68 ms
79,164 KB
testcase_18 AC 42 ms
54,076 KB
testcase_19 AC 95 ms
90,404 KB
testcase_20 AC 105 ms
96,804 KB
testcase_21 AC 71 ms
80,884 KB
testcase_22 AC 90 ms
96,900 KB
testcase_23 AC 146 ms
115,608 KB
testcase_24 AC 86 ms
94,976 KB
testcase_25 AC 106 ms
109,208 KB
testcase_26 WA -
testcase_27 AC 142 ms
115,900 KB
testcase_28 AC 85 ms
94,896 KB
testcase_29 AC 101 ms
108,000 KB
testcase_30 AC 121 ms
126,136 KB
testcase_31 AC 55 ms
66,716 KB
testcase_32 AC 118 ms
119,592 KB
testcase_33 AC 160 ms
124,464 KB
testcase_34 AC 155 ms
124,456 KB
testcase_35 AC 159 ms
124,456 KB
testcase_36 AC 160 ms
124,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


def get_list(ty=int):
    return list(map(ty, input().split()))


def get_int():
    return int(input())


def get_str():
    return input()


N, M = get_list()
A = get_list()

cnt = defaultdict(int)
for a in A:
    cnt[a % M] += 1

ans = 0
if cnt[0] > 0:
    ans += 1

keys = cnt.keys()
used = {0}
for k in list(keys):
    if not k in used:
        used.add(k)
        k2 = M-k
        used.add(k2)
        ans += max(cnt[k], cnt[k2])

print(ans)


0