結果

問題 No.1972 Modulo Set
ユーザー ああいいああいい
提出日時 2022-06-12 07:07:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 107,988 KB
最終ジャッジ日時 2024-10-05 01:46:04
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,320 KB
testcase_01 AC 37 ms
53,988 KB
testcase_02 AC 36 ms
53,720 KB
testcase_03 AC 53 ms
71,484 KB
testcase_04 AC 59 ms
72,884 KB
testcase_05 AC 56 ms
73,860 KB
testcase_06 AC 65 ms
81,912 KB
testcase_07 AC 82 ms
90,112 KB
testcase_08 AC 54 ms
73,788 KB
testcase_09 AC 48 ms
64,884 KB
testcase_10 AC 54 ms
73,292 KB
testcase_11 AC 76 ms
88,884 KB
testcase_12 AC 52 ms
69,204 KB
testcase_13 AC 48 ms
64,676 KB
testcase_14 AC 49 ms
66,920 KB
testcase_15 AC 85 ms
92,088 KB
testcase_16 AC 82 ms
94,072 KB
testcase_17 AC 56 ms
74,264 KB
testcase_18 AC 37 ms
55,244 KB
testcase_19 AC 72 ms
85,948 KB
testcase_20 AC 91 ms
95,744 KB
testcase_21 AC 65 ms
79,380 KB
testcase_22 AC 69 ms
83,528 KB
testcase_23 AC 101 ms
102,480 KB
testcase_24 AC 65 ms
78,384 KB
testcase_25 AC 75 ms
86,420 KB
testcase_26 AC 96 ms
97,008 KB
testcase_27 AC 98 ms
104,100 KB
testcase_28 AC 59 ms
76,744 KB
testcase_29 AC 67 ms
83,716 KB
testcase_30 AC 77 ms
92,672 KB
testcase_31 AC 46 ms
63,612 KB
testcase_32 AC 73 ms
89,008 KB
testcase_33 AC 105 ms
107,564 KB
testcase_34 AC 104 ms
107,988 KB
testcase_35 AC 104 ms
107,780 KB
testcase_36 AC 102 ms
107,660 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
        continue
    elif M % 2 == 0 and a == M // 2:
        ans -= v - 1
    elif M - a in d:
        u = min(v,d[M - a])
        tmp += u
print(ans - tmp // 2)
0