結果

問題 No.1972 Modulo Set
ユーザー 河野竜也河野竜也
提出日時 2022-06-23 13:13:01
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 303 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 693,640 KB
最終ジャッジ日時 2024-11-07 03:34:46
合計ジャッジ時間 7,307 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,760 KB
testcase_01 AC 42 ms
53,972 KB
testcase_02 AC 43 ms
53,612 KB
testcase_03 AC 61 ms
69,432 KB
testcase_04 AC 63 ms
72,252 KB
testcase_05 AC 61 ms
74,404 KB
testcase_06 AC 73 ms
80,556 KB
testcase_07 AC 85 ms
90,052 KB
testcase_08 AC 62 ms
74,260 KB
testcase_09 AC 62 ms
67,792 KB
testcase_10 AC 62 ms
73,096 KB
testcase_11 AC 78 ms
86,700 KB
testcase_12 AC 60 ms
69,232 KB
testcase_13 AC 70 ms
75,748 KB
testcase_14 AC 66 ms
71,840 KB
testcase_15 AC 96 ms
91,576 KB
testcase_16 AC 104 ms
93,668 KB
testcase_17 AC 73 ms
78,884 KB
testcase_18 AC 53 ms
63,224 KB
testcase_19 AC 99 ms
89,852 KB
testcase_20 AC 107 ms
95,836 KB
testcase_21 AC 74 ms
78,892 KB
testcase_22 AC 99 ms
89,184 KB
testcase_23 AC 230 ms
171,604 KB
testcase_24 AC 192 ms
177,512 KB
testcase_25 AC 227 ms
201,156 KB
testcase_26 AC 105 ms
96,852 KB
testcase_27 AC 275 ms
220,240 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()))
d=defaultdict(int)
for i in range(n):
  d[a[i]%m]+=1
ans=0
if d[0]:
  ans+=1
for i in range(1,m):
  if i*2==m:
    if d[i]:
      ans+=1
  else:
    ans+=max(d[i],d[m-i])
    d[i]=0
    d[m-i]=0
print(ans)
0