結果

問題 No.1972 Modulo Set
ユーザー rlangevinrlangevin
提出日時 2022-12-30 03:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-05-03 21:16:56
合計ジャッジ時間 5,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 43 ms
53,120 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 63 ms
69,376 KB
testcase_04 AC 70 ms
72,064 KB
testcase_05 AC 71 ms
73,984 KB
testcase_06 AC 76 ms
80,256 KB
testcase_07 AC 91 ms
89,472 KB
testcase_08 AC 65 ms
73,472 KB
testcase_09 AC 59 ms
64,896 KB
testcase_10 AC 67 ms
73,344 KB
testcase_11 AC 88 ms
88,320 KB
testcase_12 AC 61 ms
67,840 KB
testcase_13 AC 58 ms
66,304 KB
testcase_14 AC 58 ms
65,792 KB
testcase_15 AC 94 ms
92,160 KB
testcase_16 AC 104 ms
96,640 KB
testcase_17 AC 67 ms
73,600 KB
testcase_18 AC 44 ms
53,632 KB
testcase_19 AC 87 ms
89,216 KB
testcase_20 AC 105 ms
99,188 KB
testcase_21 AC 70 ms
76,032 KB
testcase_22 AC 85 ms
86,400 KB
testcase_23 AC 128 ms
109,952 KB
testcase_24 AC 83 ms
83,456 KB
testcase_25 AC 95 ms
93,312 KB
testcase_26 AC 113 ms
94,080 KB
testcase_27 AC 136 ms
110,080 KB
testcase_28 AC 81 ms
83,840 KB
testcase_29 AC 94 ms
92,672 KB
testcase_30 AC 114 ms
104,640 KB
testcase_31 AC 56 ms
65,024 KB
testcase_32 AC 107 ms
100,096 KB
testcase_33 AC 140 ms
102,784 KB
testcase_34 AC 140 ms
102,784 KB
testcase_35 AC 142 ms
102,528 KB
testcase_36 AC 142 ms
102,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

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

for a in A:
    D[a % M] += 1
    D[M - a % M] += 0
    
ans = 0
for k, v in D.items():
    if k % M == 0:
        ans += min(1, D[k%M])
    else:
        ans += max(D[k], D[M - k])
    
# print(ans, D)
if M % 2 == 0:
    ans -= D[M//2]
    ans += min(1, D[M//2]) * 2
print(ans // 2)
0