結果

問題 No.1972 Modulo Set
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-06-11 09:50:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 116,200 KB
最終ジャッジ日時 2024-10-05 01:43:22
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,892 KB
testcase_01 AC 38 ms
53,848 KB
testcase_02 AC 37 ms
55,332 KB
testcase_03 AC 65 ms
73,180 KB
testcase_04 AC 57 ms
73,136 KB
testcase_05 AC 56 ms
74,772 KB
testcase_06 AC 70 ms
81,696 KB
testcase_07 AC 81 ms
90,436 KB
testcase_08 AC 55 ms
73,612 KB
testcase_09 AC 53 ms
67,440 KB
testcase_10 AC 57 ms
73,896 KB
testcase_11 AC 75 ms
88,788 KB
testcase_12 AC 53 ms
70,052 KB
testcase_13 AC 48 ms
67,392 KB
testcase_14 AC 52 ms
68,952 KB
testcase_15 AC 83 ms
92,708 KB
testcase_16 AC 89 ms
94,872 KB
testcase_17 AC 61 ms
77,228 KB
testcase_18 AC 40 ms
54,216 KB
testcase_19 AC 83 ms
90,800 KB
testcase_20 AC 93 ms
96,764 KB
testcase_21 AC 65 ms
79,612 KB
testcase_22 AC 84 ms
92,312 KB
testcase_23 AC 125 ms
105,184 KB
testcase_24 AC 77 ms
89,308 KB
testcase_25 AC 92 ms
102,532 KB
testcase_26 AC 97 ms
97,032 KB
testcase_27 AC 124 ms
105,428 KB
testcase_28 AC 70 ms
89,416 KB
testcase_29 AC 85 ms
101,276 KB
testcase_30 AC 99 ms
116,200 KB
testcase_31 AC 47 ms
65,760 KB
testcase_32 AC 96 ms
110,680 KB
testcase_33 AC 141 ms
109,884 KB
testcase_34 AC 132 ms
109,792 KB
testcase_35 AC 135 ms
109,544 KB
testcase_36 AC 134 ms
110,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
from collections import defaultdict
m_d = defaultdict(int)
for i in range(n):
    m_d[a[i]%m] += 1

ans = 0
if m_d[0]:ans += 1
if not (m&1) and m_d[m//2]:ans +=1
memo = set()
for key in list(m_d.keys())[::]:
    if key == 0:continue
    if not (m&1) and key ==  m//2:continue
    if key in memo:continue
    ans += max(m_d[key], m_d[m-key])
    memo.add(m-key)
print(ans)
0