結果

問題 No.1972 Modulo Set
ユーザー minimumminimum
提出日時 2022-06-10 21:26:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 691,896 KB
最終ジャッジ日時 2024-09-21 05:57:50
合計ジャッジ時間 7,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,392 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 58 ms
65,920 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 63 ms
72,960 KB
testcase_14 AC 63 ms
71,040 KB
testcase_15 WA -
testcase_16 AC 101 ms
94,464 KB
testcase_17 AC 69 ms
75,520 KB
testcase_18 AC 49 ms
61,568 KB
testcase_19 AC 91 ms
92,032 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 89 ms
91,264 KB
testcase_23 AC 200 ms
170,972 KB
testcase_24 AC 173 ms
175,488 KB
testcase_25 AC 197 ms
199,936 KB
testcase_26 WA -
testcase_27 AC 227 ms
219,544 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
for i in range(M // 2 + 1):
    ans += max(r[i], r[M - i])

print(ans)
0