結果

問題 No.1972 Modulo Set
ユーザー 8nd5t8nd5t
提出日時 2022-06-10 21:39:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 914 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 142,696 KB
最終ジャッジ日時 2024-09-21 06:05:10
合計ジャッジ時間 8,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
84,912 KB
testcase_01 AC 142 ms
84,676 KB
testcase_02 AC 139 ms
84,556 KB
testcase_03 WA -
testcase_04 AC 158 ms
87,128 KB
testcase_05 WA -
testcase_06 AC 162 ms
93,024 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 161 ms
85,332 KB
testcase_10 WA -
testcase_11 AC 172 ms
96,784 KB
testcase_12 AC 152 ms
85,500 KB
testcase_13 AC 149 ms
85,188 KB
testcase_14 AC 152 ms
85,932 KB
testcase_15 AC 177 ms
99,312 KB
testcase_16 AC 179 ms
100,148 KB
testcase_17 WA -
testcase_18 AC 139 ms
84,548 KB
testcase_19 AC 183 ms
99,596 KB
testcase_20 AC 187 ms
104,296 KB
testcase_21 AC 174 ms
91,100 KB
testcase_22 WA -
testcase_23 AC 219 ms
132,040 KB
testcase_24 AC 176 ms
100,412 KB
testcase_25 AC 192 ms
110,312 KB
testcase_26 WA -
testcase_27 AC 229 ms
132,640 KB
testcase_28 AC 185 ms
108,636 KB
testcase_29 AC 184 ms
110,500 KB
testcase_30 AC 200 ms
121,472 KB
testcase_31 AC 153 ms
85,280 KB
testcase_32 AC 206 ms
117,272 KB
testcase_33 AC 251 ms
142,684 KB
testcase_34 AC 240 ms
141,900 KB
testcase_35 AC 238 ms
142,612 KB
testcase_36 AC 241 ms
142,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush,heapify
from bisect import bisect_left,bisect_right 
import sys,math,itertools,pprint,fractions
sys.setrecursionlimit(10**8)
mod = 998244353
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def inplm(): return map(int, sys.stdin.readline().split())
def inpl_1m(): return map(lambda x:int(x)-1, sys.stdin.readline().split())
def err(x): print(x); exit()

n,m = inpl()
a = inpl()
if m == 1:
    err(0)
d = defaultdict(int)
for x in a:
    d[x%m] += 1
res = n
seen = set()
for key in list(d):
    if key in seen:
        continue
    if key == 0:
        res -= d[key]-1
    else:
        seen.add(key)
        seen.add(m-key)
        res -= min(d[key], d[m-key])
print(res)
0