結果

問題 No.1972 Modulo Set
ユーザー Issei MoriIssei Mori
提出日時 2022-06-10 21:43:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 135,784 KB
最終ジャッジ日時 2024-09-21 06:08:02
合計ジャッジ時間 5,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,056 KB
testcase_01 AC 40 ms
53,900 KB
testcase_02 AC 43 ms
54,404 KB
testcase_03 AC 62 ms
74,820 KB
testcase_04 AC 65 ms
79,384 KB
testcase_05 WA -
testcase_06 AC 83 ms
92,216 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 57 ms
66,852 KB
testcase_10 WA -
testcase_11 AC 95 ms
100,284 KB
testcase_12 AC 60 ms
72,288 KB
testcase_13 AC 55 ms
67,844 KB
testcase_14 AC 58 ms
70,864 KB
testcase_15 AC 103 ms
103,580 KB
testcase_16 AC 111 ms
105,624 KB
testcase_17 AC 72 ms
82,008 KB
testcase_18 AC 41 ms
55,112 KB
testcase_19 AC 102 ms
98,484 KB
testcase_20 AC 119 ms
107,404 KB
testcase_21 AC 77 ms
85,100 KB
testcase_22 AC 98 ms
95,588 KB
testcase_23 AC 153 ms
116,756 KB
testcase_24 AC 88 ms
99,748 KB
testcase_25 AC 114 ms
105,016 KB
testcase_26 WA -
testcase_27 AC 157 ms
118,740 KB
testcase_28 AC 88 ms
100,516 KB
testcase_29 AC 108 ms
116,764 KB
testcase_30 AC 135 ms
111,876 KB
testcase_31 AC 54 ms
66,936 KB
testcase_32 AC 127 ms
129,252 KB
testcase_33 AC 174 ms
135,112 KB
testcase_34 AC 174 ms
135,652 KB
testcase_35 AC 176 ms
135,544 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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 set(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