結果

問題 No.1972 Modulo Set
ユーザー ああいいああいい
提出日時 2022-06-12 07:02:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 107,804 KB
最終ジャッジ日時 2024-09-22 16:59:38
合計ジャッジ時間 4,435 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,400 KB
testcase_01 AC 40 ms
53,616 KB
testcase_02 AC 42 ms
54,888 KB
testcase_03 WA -
testcase_04 AC 62 ms
73,492 KB
testcase_05 WA -
testcase_06 AC 71 ms
81,052 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 52 ms
65,336 KB
testcase_10 WA -
testcase_11 AC 84 ms
88,824 KB
testcase_12 AC 59 ms
69,764 KB
testcase_13 AC 51 ms
64,584 KB
testcase_14 AC 54 ms
67,112 KB
testcase_15 AC 94 ms
91,932 KB
testcase_16 AC 91 ms
94,272 KB
testcase_17 WA -
testcase_18 AC 41 ms
54,680 KB
testcase_19 AC 79 ms
86,328 KB
testcase_20 AC 100 ms
95,732 KB
testcase_21 AC 71 ms
78,884 KB
testcase_22 WA -
testcase_23 AC 102 ms
102,300 KB
testcase_24 AC 69 ms
78,308 KB
testcase_25 AC 77 ms
87,076 KB
testcase_26 WA -
testcase_27 AC 102 ms
104,036 KB
testcase_28 AC 63 ms
76,388 KB
testcase_29 AC 73 ms
84,208 KB
testcase_30 AC 82 ms
92,004 KB
testcase_31 AC 51 ms
63,376 KB
testcase_32 AC 78 ms
89,452 KB
testcase_33 AC 110 ms
107,624 KB
testcase_34 AC 111 ms
107,596 KB
testcase_35 AC 111 ms
107,804 KB
testcase_36 AC 113 ms
107,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))

from collections import defaultdict
d = defaultdict(int)
for a in A:
    d[a % M] += 1
ans = N
tmp = 0
for a,v in d.items():
    if a == 0:
        ans -= v - 1
    elif M - a in d:
        u = min(v,d[M - a])
        tmp += u
if M % 2 == 0 and M // 2 in d:
    v = d[M // 2]
    ans += 1
print(ans - tmp // 2)
0