結果
問題 | No.1972 Modulo Set |
ユーザー | 8nd5t |
提出日時 | 2022-06-10 21:39:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 936 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 142,596 KB |
最終ジャッジ日時 | 2024-09-21 06:05:42 |
合計ジャッジ時間 | 8,673 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
84,644 KB |
testcase_01 | AC | 138 ms
84,896 KB |
testcase_02 | AC | 140 ms
85,096 KB |
testcase_03 | WA | - |
testcase_04 | AC | 158 ms
87,236 KB |
testcase_05 | WA | - |
testcase_06 | AC | 168 ms
92,308 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 150 ms
84,956 KB |
testcase_10 | WA | - |
testcase_11 | AC | 172 ms
97,052 KB |
testcase_12 | AC | 162 ms
85,612 KB |
testcase_13 | AC | 153 ms
85,412 KB |
testcase_14 | AC | 165 ms
85,264 KB |
testcase_15 | AC | 188 ms
98,500 KB |
testcase_16 | AC | 195 ms
100,176 KB |
testcase_17 | WA | - |
testcase_18 | AC | 139 ms
84,296 KB |
testcase_19 | AC | 182 ms
99,596 KB |
testcase_20 | AC | 188 ms
104,280 KB |
testcase_21 | AC | 168 ms
90,464 KB |
testcase_22 | WA | - |
testcase_23 | AC | 221 ms
132,288 KB |
testcase_24 | AC | 179 ms
100,504 KB |
testcase_25 | AC | 190 ms
110,356 KB |
testcase_26 | WA | - |
testcase_27 | AC | 227 ms
132,480 KB |
testcase_28 | AC | 177 ms
108,692 KB |
testcase_29 | AC | 186 ms
110,296 KB |
testcase_30 | AC | 202 ms
121,348 KB |
testcase_31 | AC | 151 ms
85,572 KB |
testcase_32 | AC | 198 ms
117,204 KB |
testcase_33 | AC | 236 ms
142,456 KB |
testcase_34 | AC | 240 ms
142,052 KB |
testcase_35 | AC | 247 ms
142,516 KB |
testcase_36 | AC | 250 ms
142,596 KB |
ソースコード
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 n == 1: err(1) 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)