結果

問題 No.1972 Modulo Set
ユーザー titan23titan23
提出日時 2022-06-24 09:44:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-11-08 02:39:33
合計ジャッジ時間 5,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 64 ms
71,040 KB
testcase_04 AC 69 ms
72,704 KB
testcase_05 AC 65 ms
74,880 KB
testcase_06 AC 74 ms
81,024 KB
testcase_07 AC 90 ms
90,348 KB
testcase_08 AC 63 ms
73,088 KB
testcase_09 AC 60 ms
65,792 KB
testcase_10 AC 65 ms
72,832 KB
testcase_11 AC 86 ms
88,704 KB
testcase_12 AC 63 ms
69,120 KB
testcase_13 AC 57 ms
65,280 KB
testcase_14 AC 60 ms
67,328 KB
testcase_15 AC 97 ms
91,776 KB
testcase_16 AC 109 ms
94,232 KB
testcase_17 AC 71 ms
76,928 KB
testcase_18 AC 45 ms
53,504 KB
testcase_19 AC 92 ms
89,344 KB
testcase_20 AC 104 ms
96,000 KB
testcase_21 AC 72 ms
78,208 KB
testcase_22 AC 85 ms
88,228 KB
testcase_23 AC 125 ms
102,528 KB
testcase_24 AC 77 ms
82,816 KB
testcase_25 AC 88 ms
94,720 KB
testcase_26 AC 107 ms
96,768 KB
testcase_27 AC 120 ms
104,100 KB
testcase_28 AC 74 ms
81,920 KB
testcase_29 AC 88 ms
92,800 KB
testcase_30 AC 101 ms
104,192 KB
testcase_31 AC 56 ms
64,512 KB
testcase_32 AC 96 ms
99,712 KB
testcase_33 AC 135 ms
107,392 KB
testcase_34 AC 134 ms
107,648 KB
testcase_35 AC 128 ms
107,520 KB
testcase_36 AC 130 ms
107,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
from collections import Counter

#  -----------------------  #

n, m = map(int, input().split())
A = list(map(lambda x: int(x)%m, input().split()))
cou = Counter(A)
ans = 0
st = set()
for k,v in cou.items():
  k %= m
  if k in st:
    continue

  if k == 0:
    ans += 1
    st.add(k)
  elif m % 2 == 0 and k == m//2:
    ans += 1
    st.add(k)
  else:
    ans += max(v, cou[m-k])
    st.add(m-k)
print(ans)
0