結果
問題 | No.1972 Modulo Set |
ユーザー | 8nd5t |
提出日時 | 2022-06-10 21:51:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 237 ms / 2,000 ms |
コード長 | 1,375 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 142,372 KB |
最終ジャッジ日時 | 2024-10-05 01:30:57 |
合計ジャッジ時間 | 8,525 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
84,540 KB |
testcase_01 | AC | 131 ms
84,228 KB |
testcase_02 | AC | 139 ms
84,244 KB |
testcase_03 | AC | 146 ms
85,368 KB |
testcase_04 | AC | 149 ms
87,220 KB |
testcase_05 | AC | 159 ms
88,300 KB |
testcase_06 | AC | 159 ms
92,696 KB |
testcase_07 | AC | 169 ms
97,856 KB |
testcase_08 | AC | 145 ms
89,160 KB |
testcase_09 | AC | 141 ms
85,304 KB |
testcase_10 | AC | 144 ms
87,540 KB |
testcase_11 | AC | 157 ms
96,592 KB |
testcase_12 | AC | 145 ms
84,860 KB |
testcase_13 | AC | 145 ms
84,812 KB |
testcase_14 | AC | 155 ms
85,440 KB |
testcase_15 | AC | 192 ms
97,748 KB |
testcase_16 | AC | 183 ms
100,504 KB |
testcase_17 | AC | 165 ms
89,376 KB |
testcase_18 | AC | 150 ms
84,100 KB |
testcase_19 | AC | 193 ms
99,000 KB |
testcase_20 | AC | 199 ms
104,428 KB |
testcase_21 | AC | 168 ms
90,732 KB |
testcase_22 | AC | 181 ms
98,888 KB |
testcase_23 | AC | 232 ms
132,156 KB |
testcase_24 | AC | 170 ms
100,296 KB |
testcase_25 | AC | 184 ms
110,212 KB |
testcase_26 | AC | 176 ms
100,544 KB |
testcase_27 | AC | 212 ms
131,932 KB |
testcase_28 | AC | 181 ms
108,572 KB |
testcase_29 | AC | 179 ms
109,764 KB |
testcase_30 | AC | 191 ms
120,768 KB |
testcase_31 | AC | 142 ms
85,272 KB |
testcase_32 | AC | 195 ms
117,108 KB |
testcase_33 | AC | 237 ms
142,372 KB |
testcase_34 | AC | 229 ms
142,324 KB |
testcase_35 | AC | 233 ms
142,304 KB |
testcase_36 | AC | 232 ms
142,288 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() def sol(n,m,a): res = 0 for it in itertools.product([0,1],repeat=n): if sum(it) == 0: continue b = [] for i,x in enumerate(it): if x: b.append(a[i]) ln = len(b) ok = 1 for i in range(ln): for j in range(i+1,ln): if (a[i] + a[j])%m: ok = 0 if ok: res = max(res, ln) return res n,m = inpl() a = inpl() 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 or key == m-key: res -= d[key]-1 seen.add(key) else: seen.add(key) seen.add(m-key) res -= min(d[key], d[m-key]) print(res)