結果

問題 No.1972 Modulo Set
ユーザー gr1msl3ygr1msl3y
提出日時 2022-06-11 01:11:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 274 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 257,764 KB
最終ジャッジ日時 2024-09-21 08:27:43
合計ジャッジ時間 13,462 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,276 KB
testcase_01 AC 39 ms
52,000 KB
testcase_02 AC 43 ms
52,532 KB
testcase_03 AC 58 ms
69,580 KB
testcase_04 AC 59 ms
70,936 KB
testcase_05 AC 57 ms
70,388 KB
testcase_06 AC 68 ms
80,452 KB
testcase_07 AC 78 ms
87,900 KB
testcase_08 AC 58 ms
70,728 KB
testcase_09 AC 55 ms
66,908 KB
testcase_10 AC 58 ms
70,580 KB
testcase_11 AC 78 ms
86,472 KB
testcase_12 AC 56 ms
66,748 KB
testcase_13 AC 104 ms
87,476 KB
testcase_14 AC 89 ms
83,788 KB
testcase_15 AC 113 ms
90,680 KB
testcase_16 AC 149 ms
93,092 KB
testcase_17 AC 72 ms
77,756 KB
testcase_18 AC 50 ms
62,612 KB
testcase_19 AC 151 ms
93,900 KB
testcase_20 AC 166 ms
96,260 KB
testcase_21 AC 78 ms
79,752 KB
testcase_22 AC 158 ms
95,596 KB
testcase_23 AC 843 ms
239,380 KB
testcase_24 AC 700 ms
239,136 KB
testcase_25 AC 955 ms
250,912 KB
testcase_26 AC 137 ms
95,160 KB
testcase_27 AC 1,217 ms
253,220 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 1,427 ms
256,020 KB
testcase_34 AC 1,419 ms
257,764 KB
testcase_35 AC 1,420 ms
255,080 KB
testcase_36 AC 1,419 ms
255,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
B=[[0,i] for i in range(M)]
for a in A:
	B[a%M][0]+=1
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