結果

問題 No.1972 Modulo Set
ユーザー gr1msl3ygr1msl3y
提出日時 2022-06-11 01:13:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 119,684 KB
最終ジャッジ日時 2024-10-05 01:41:58
合計ジャッジ時間 6,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,976 KB
testcase_01 AC 40 ms
53,488 KB
testcase_02 AC 38 ms
54,176 KB
testcase_03 AC 70 ms
75,264 KB
testcase_04 AC 64 ms
77,208 KB
testcase_05 AC 62 ms
76,344 KB
testcase_06 AC 75 ms
84,740 KB
testcase_07 AC 87 ms
90,948 KB
testcase_08 AC 53 ms
75,612 KB
testcase_09 AC 52 ms
66,480 KB
testcase_10 AC 59 ms
75,224 KB
testcase_11 AC 85 ms
89,316 KB
testcase_12 AC 57 ms
72,604 KB
testcase_13 AC 53 ms
69,068 KB
testcase_14 AC 58 ms
71,704 KB
testcase_15 AC 147 ms
93,188 KB
testcase_16 AC 177 ms
95,244 KB
testcase_17 AC 89 ms
82,044 KB
testcase_18 AC 39 ms
54,872 KB
testcase_19 AC 163 ms
93,436 KB
testcase_20 AC 189 ms
96,980 KB
testcase_21 AC 92 ms
83,436 KB
testcase_22 AC 151 ms
92,252 KB
testcase_23 AC 310 ms
112,208 KB
testcase_24 AC 141 ms
89,940 KB
testcase_25 AC 198 ms
99,404 KB
testcase_26 AC 168 ms
97,080 KB
testcase_27 AC 321 ms
112,992 KB
testcase_28 AC 140 ms
91,120 KB
testcase_29 AC 196 ms
99,608 KB
testcase_30 AC 255 ms
108,024 KB
testcase_31 AC 53 ms
69,556 KB
testcase_32 AC 239 ms
105,348 KB
testcase_33 AC 377 ms
119,544 KB
testcase_34 AC 372 ms
119,532 KB
testcase_35 AC 379 ms
119,684 KB
testcase_36 AC 364 ms
119,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,M=map(int,input().split())
A=list(map(int,input().split()))
D=defaultdict(int)
for a in A:
	D[a%M]+=1
B=[[D[k],k] for k in D if D[k]]
B.sort(reverse=True)
S=set()
ans=0
for c,v in B:
	if 2*v%M==0:
		ans+=(c>0)
		S.add(v)
	else:
		if v not in S:
			ans+=c
			S.add(v)
			S.add(M-v)
print(ans)
0