結果

問題 No.1972 Modulo Set
ユーザー shobonvipshobonvip
提出日時 2022-06-11 15:26:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 108,692 KB
最終ジャッジ日時 2024-10-05 01:44:56
合計ジャッジ時間 4,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,136 KB
testcase_01 AC 40 ms
54,492 KB
testcase_02 AC 38 ms
54,588 KB
testcase_03 AC 59 ms
71,940 KB
testcase_04 AC 62 ms
73,316 KB
testcase_05 AC 58 ms
74,260 KB
testcase_06 AC 63 ms
81,160 KB
testcase_07 AC 78 ms
90,360 KB
testcase_08 AC 55 ms
73,620 KB
testcase_09 AC 50 ms
65,648 KB
testcase_10 AC 56 ms
72,992 KB
testcase_11 AC 75 ms
88,812 KB
testcase_12 AC 54 ms
70,648 KB
testcase_13 AC 50 ms
65,848 KB
testcase_14 AC 52 ms
67,524 KB
testcase_15 AC 88 ms
92,972 KB
testcase_16 AC 91 ms
95,544 KB
testcase_17 AC 63 ms
78,528 KB
testcase_18 AC 38 ms
54,792 KB
testcase_19 AC 86 ms
91,396 KB
testcase_20 AC 93 ms
97,300 KB
testcase_21 AC 66 ms
79,308 KB
testcase_22 AC 76 ms
89,004 KB
testcase_23 AC 110 ms
103,996 KB
testcase_24 AC 69 ms
84,476 KB
testcase_25 AC 80 ms
95,040 KB
testcase_26 AC 92 ms
97,104 KB
testcase_27 AC 107 ms
105,532 KB
testcase_28 AC 66 ms
84,132 KB
testcase_29 AC 75 ms
94,008 KB
testcase_30 AC 88 ms
105,092 KB
testcase_31 AC 48 ms
65,524 KB
testcase_32 AC 85 ms
100,672 KB
testcase_33 AC 114 ms
108,688 KB
testcase_34 AC 119 ms
108,520 KB
testcase_35 AC 119 ms
108,672 KB
testcase_36 AC 121 ms
108,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,m = map(int,input().split())
a = list(map(int,input().split()))
ac = defaultdict(int)

for i in a:
	ac[i%m] += 1

ans = 0
for i, j in list(ac.items()):
	if i == (m-i)%m and j >= 1:
		ans += 1
	elif j > ac[(m-i)%m]:
		ans += j
	elif j == ac[(m-i)%m] and i > (m-i)%m:
		ans += j

print(ans)
0