結果

問題 No.1972 Modulo Set
ユーザー KazunKazun
提出日時 2021-08-20 23:27:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,888 KB
最終ジャッジ日時 2024-10-05 01:20:18
合計ジャッジ時間 4,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 45 ms
53,688 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 56 ms
69,760 KB
testcase_04 AC 57 ms
71,424 KB
testcase_05 AC 61 ms
74,240 KB
testcase_06 AC 65 ms
79,872 KB
testcase_07 AC 81 ms
89,856 KB
testcase_08 AC 57 ms
73,472 KB
testcase_09 AC 52 ms
65,408 KB
testcase_10 AC 59 ms
72,832 KB
testcase_11 AC 71 ms
86,656 KB
testcase_12 AC 54 ms
68,352 KB
testcase_13 AC 49 ms
65,792 KB
testcase_14 AC 50 ms
66,816 KB
testcase_15 AC 83 ms
91,904 KB
testcase_16 AC 90 ms
94,464 KB
testcase_17 AC 63 ms
74,496 KB
testcase_18 AC 40 ms
53,504 KB
testcase_19 AC 81 ms
89,872 KB
testcase_20 AC 92 ms
96,128 KB
testcase_21 AC 67 ms
76,672 KB
testcase_22 AC 79 ms
87,296 KB
testcase_23 AC 114 ms
104,576 KB
testcase_24 AC 72 ms
83,328 KB
testcase_25 AC 85 ms
93,312 KB
testcase_26 AC 97 ms
97,280 KB
testcase_27 AC 110 ms
104,832 KB
testcase_28 AC 68 ms
83,456 KB
testcase_29 AC 78 ms
92,288 KB
testcase_30 AC 94 ms
103,936 KB
testcase_31 AC 50 ms
64,384 KB
testcase_32 AC 89 ms
99,712 KB
testcase_33 AC 127 ms
107,628 KB
testcase_34 AC 120 ms
107,748 KB
testcase_35 AC 129 ms
107,888 KB
testcase_36 AC 121 ms
107,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

A=list(map(int,input().split()))
D=defaultdict(int)

for a in A:
    D[a%M]+=1

X=0
K=list(D.keys())
for a in K:
    b=(M-a)%M
    if a==b:
        if D[a]:
            X+=1
            D[a]=0
    else:
        X+=max(D[a],D[b])
        D[a]=D[b]=0

print(X)
0