結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
84,736 KB
testcase_01 AC 152 ms
84,736 KB
testcase_02 AC 148 ms
84,992 KB
testcase_03 WA -
testcase_04 AC 171 ms
87,648 KB
testcase_05 WA -
testcase_06 AC 178 ms
93,184 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 165 ms
85,760 KB
testcase_10 WA -
testcase_11 AC 187 ms
96,728 KB
testcase_12 AC 169 ms
85,376 KB
testcase_13 AC 168 ms
85,388 KB
testcase_14 AC 166 ms
85,760 KB
testcase_15 AC 196 ms
98,884 KB
testcase_16 AC 202 ms
100,352 KB
testcase_17 WA -
testcase_18 AC 152 ms
84,864 KB
testcase_19 AC 196 ms
99,584 KB
testcase_20 AC 209 ms
104,572 KB
testcase_21 AC 178 ms
90,880 KB
testcase_22 WA -
testcase_23 AC 237 ms
132,608 KB
testcase_24 AC 189 ms
100,992 KB
testcase_25 AC 210 ms
110,848 KB
testcase_26 WA -
testcase_27 AC 256 ms
132,736 KB
testcase_28 AC 199 ms
108,928 KB
testcase_29 AC 208 ms
110,208 KB
testcase_30 AC 224 ms
121,088 KB
testcase_31 AC 164 ms
85,456 KB
testcase_32 AC 224 ms
117,504 KB
testcase_33 AC 265 ms
142,720 KB
testcase_34 AC 265 ms
142,720 KB
testcase_35 AC 270 ms
142,572 KB
testcase_36 AC 259 ms
142,848 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(1)
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