結果

問題 No.1972 Modulo Set
ユーザー tassei903tassei903
提出日時 2022-06-10 21:30:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-10-05 01:24:58
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,900 KB
testcase_01 AC 36 ms
54,212 KB
testcase_02 AC 36 ms
55,388 KB
testcase_03 AC 55 ms
70,052 KB
testcase_04 AC 60 ms
71,868 KB
testcase_05 AC 60 ms
74,436 KB
testcase_06 AC 67 ms
80,244 KB
testcase_07 AC 77 ms
90,236 KB
testcase_08 AC 55 ms
73,964 KB
testcase_09 AC 51 ms
65,732 KB
testcase_10 AC 57 ms
72,692 KB
testcase_11 AC 78 ms
88,812 KB
testcase_12 AC 60 ms
68,736 KB
testcase_13 AC 54 ms
65,536 KB
testcase_14 AC 60 ms
67,328 KB
testcase_15 AC 90 ms
91,904 KB
testcase_16 AC 101 ms
94,208 KB
testcase_17 AC 65 ms
74,880 KB
testcase_18 AC 40 ms
53,760 KB
testcase_19 AC 86 ms
89,856 KB
testcase_20 AC 97 ms
96,256 KB
testcase_21 AC 68 ms
76,672 KB
testcase_22 AC 83 ms
87,552 KB
testcase_23 AC 115 ms
104,576 KB
testcase_24 AC 91 ms
83,712 KB
testcase_25 AC 91 ms
93,184 KB
testcase_26 AC 98 ms
96,372 KB
testcase_27 AC 117 ms
104,960 KB
testcase_28 AC 75 ms
83,584 KB
testcase_29 AC 84 ms
92,412 KB
testcase_30 AC 98 ms
103,808 KB
testcase_31 AC 52 ms
64,512 KB
testcase_32 AC 96 ms
99,968 KB
testcase_33 AC 126 ms
107,648 KB
testcase_34 AC 123 ms
107,776 KB
testcase_35 AC 126 ms
107,776 KB
testcase_36 AC 130 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n,m = na()
a = na()
from collections import defaultdict
c = defaultdict(int)
for i in range(n):
    c[a[i]%m] += 1

ans = 0
for i in list(c):
    if i== 0 or i * 2 == m:
        ans += 1
    else:
        ans += max(c[i], c[m-i])
        c[i] = 0
        c[m-i] = 0
print(ans)
0