結果

問題 No.1972 Modulo Set
ユーザー 河野竜也河野竜也
提出日時 2022-06-20 13:10:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 322 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 686,288 KB
最終ジャッジ日時 2024-10-13 00:54:41
合計ジャッジ時間 7,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,568 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 44 ms
12,992 KB
testcase_04 AC 47 ms
13,904 KB
testcase_05 AC 51 ms
14,664 KB
testcase_06 AC 63 ms
16,768 KB
testcase_07 AC 87 ms
19,864 KB
testcase_08 AC 55 ms
15,472 KB
testcase_09 AC 32 ms
11,520 KB
testcase_10 AC 47 ms
14,016 KB
testcase_11 AC 86 ms
19,384 KB
testcase_12 AC 36 ms
12,032 KB
testcase_13 AC 52 ms
16,308 KB
testcase_14 AC 46 ms
13,572 KB
testcase_15 AC 98 ms
18,840 KB
testcase_16 AC 117 ms
20,544 KB
testcase_17 AC 55 ms
14,588 KB
testcase_18 AC 31 ms
11,392 KB
testcase_19 AC 107 ms
20,352 KB
testcase_20 AC 120 ms
20,576 KB
testcase_21 AC 61 ms
15,332 KB
testcase_22 AC 100 ms
20,072 KB
testcase_23 AC 397 ms
57,488 KB
testcase_24 AC 347 ms
54,252 KB
testcase_25 AC 448 ms
97,380 KB
testcase_26 AC 123 ms
21,596 KB
testcase_27 AC 535 ms
98,776 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()))
ans=0
d=defaultdict(int)
for i in range(n):
  b=a[i]%m
  d[b]+=1
if d[0]:
  ans+=1
for i in range(1,(m//2)+1):
  if d[i]>=d[m-i]:
    ans+=d[i]
  else:
    ans+=d[m-i]
if m%2==0:
  if d[m//2]:
    ans-=(d[m//2]-1)
print(ans)
0