結果

問題 No.1972 Modulo Set
ユーザー rlangevinrlangevin
提出日時 2022-12-30 03:35:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 110,000 KB
最終ジャッジ日時 2024-11-25 01:43:13
合計ジャッジ時間 4,322 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,764 KB
testcase_01 AC 45 ms
55,476 KB
testcase_02 AC 41 ms
54,204 KB
testcase_03 WA -
testcase_04 AC 60 ms
73,904 KB
testcase_05 WA -
testcase_06 AC 68 ms
80,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 54 ms
65,212 KB
testcase_10 WA -
testcase_11 AC 76 ms
88,276 KB
testcase_12 AC 57 ms
69,064 KB
testcase_13 AC 51 ms
66,644 KB
testcase_14 AC 50 ms
67,980 KB
testcase_15 AC 85 ms
92,428 KB
testcase_16 AC 94 ms
96,864 KB
testcase_17 WA -
testcase_18 AC 41 ms
55,656 KB
testcase_19 AC 81 ms
88,972 KB
testcase_20 AC 88 ms
99,048 KB
testcase_21 AC 66 ms
76,668 KB
testcase_22 WA -
testcase_23 AC 113 ms
110,000 KB
testcase_24 AC 74 ms
83,744 KB
testcase_25 AC 86 ms
94,344 KB
testcase_26 WA -
testcase_27 AC 121 ms
109,796 KB
testcase_28 AC 72 ms
84,280 KB
testcase_29 AC 81 ms
93,372 KB
testcase_30 AC 98 ms
104,616 KB
testcase_31 AC 50 ms
64,952 KB
testcase_32 AC 93 ms
100,512 KB
testcase_33 AC 117 ms
102,872 KB
testcase_34 AC 123 ms
102,932 KB
testcase_35 AC 122 ms
103,036 KB
testcase_36 AC 125 ms
102,896 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])
    
if M % 2 == 0:
    ans -= D[M//2] * 2
    ans += min(1, D[M//2]) * 2
print(ans // 2)
0