結果

問題 No.1972 Modulo Set
ユーザー prussian_coderprussian_coder
提出日時 2022-06-10 21:55:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 110,364 KB
最終ジャッジ日時 2024-10-05 01:31:09
合計ジャッジ時間 5,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,544 KB
testcase_01 AC 35 ms
53,372 KB
testcase_02 AC 36 ms
54,256 KB
testcase_03 AC 51 ms
71,652 KB
testcase_04 AC 51 ms
72,196 KB
testcase_05 AC 54 ms
72,712 KB
testcase_06 AC 59 ms
79,552 KB
testcase_07 AC 72 ms
85,288 KB
testcase_08 AC 57 ms
70,612 KB
testcase_09 AC 49 ms
67,108 KB
testcase_10 AC 52 ms
71,068 KB
testcase_11 AC 70 ms
84,628 KB
testcase_12 AC 51 ms
68,872 KB
testcase_13 AC 46 ms
66,852 KB
testcase_14 AC 50 ms
68,716 KB
testcase_15 AC 78 ms
87,892 KB
testcase_16 AC 84 ms
90,120 KB
testcase_17 AC 59 ms
76,240 KB
testcase_18 AC 36 ms
54,744 KB
testcase_19 AC 77 ms
91,860 KB
testcase_20 AC 86 ms
91,700 KB
testcase_21 AC 64 ms
78,120 KB
testcase_22 AC 72 ms
90,024 KB
testcase_23 AC 108 ms
103,280 KB
testcase_24 AC 68 ms
86,564 KB
testcase_25 AC 83 ms
98,512 KB
testcase_26 AC 87 ms
91,596 KB
testcase_27 AC 108 ms
103,364 KB
testcase_28 AC 65 ms
86,756 KB
testcase_29 AC 75 ms
96,936 KB
testcase_30 AC 90 ms
110,364 KB
testcase_31 AC 46 ms
65,288 KB
testcase_32 AC 86 ms
106,268 KB
testcase_33 AC 123 ms
108,884 KB
testcase_34 AC 117 ms
109,320 KB
testcase_35 AC 121 ms
108,980 KB
testcase_36 AC 121 ms
108,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
from collections import Counter
A=Counter([int(x)%M for x in input().split()])
ans=0
T=set()
for a in A:
	if a*2==M or a==0:
		if A[a]>=1:
			ans+=1
	else:
		if not a in T:
			ans+=max(A[a],A[M-a])
			T.add(a)
			T.add(M-a)
print(ans)		
0