結果

問題 No.1972 Modulo Set
ユーザー minimumminimum
提出日時 2022-06-10 21:29:53
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 328 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 725,152 KB
最終ジャッジ日時 2024-09-21 05:59:45
合計ジャッジ時間 6,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,008 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 56 ms
68,992 KB
testcase_04 AC 58 ms
71,040 KB
testcase_05 AC 59 ms
72,576 KB
testcase_06 AC 66 ms
78,976 KB
testcase_07 AC 76 ms
88,064 KB
testcase_08 AC 58 ms
72,960 KB
testcase_09 AC 55 ms
65,920 KB
testcase_10 AC 57 ms
70,912 KB
testcase_11 AC 73 ms
86,396 KB
testcase_12 AC 55 ms
67,584 KB
testcase_13 AC 62 ms
73,088 KB
testcase_14 AC 60 ms
71,680 KB
testcase_15 AC 90 ms
92,500 KB
testcase_16 AC 96 ms
94,720 KB
testcase_17 AC 67 ms
76,032 KB
testcase_18 AC 47 ms
61,312 KB
testcase_19 AC 93 ms
89,984 KB
testcase_20 AC 99 ms
95,744 KB
testcase_21 AC 73 ms
77,696 KB
testcase_22 AC 84 ms
91,392 KB
testcase_23 AC 188 ms
171,304 KB
testcase_24 AC 155 ms
176,300 KB
testcase_25 AC 179 ms
200,448 KB
testcase_26 AC 97 ms
97,152 KB
testcase_27 AC 226 ms
220,056 KB
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


N, M = map(int, input().split())
A = list(map(int, input().split()))

r = defaultdict(int)
for i in range(N):
    r[A[i] % M] += 1

ans = 0
if 0 in r:
    ans += 1
if M % 2 == 0 and (M // 2 in r):
    ans += 1

for i in range(1, (M - 1) // 2 + 1):
    ans += max(r[i], r[M - i])

print(ans)
0