結果

問題 No.1972 Modulo Set
ユーザー rlangevinrlangevin
提出日時 2022-12-30 03:32:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 109,792 KB
最終ジャッジ日時 2024-05-03 21:12:42
合計ジャッジ時間 5,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,704 KB
testcase_01 AC 42 ms
54,312 KB
testcase_02 AC 39 ms
53,992 KB
testcase_03 AC 55 ms
70,040 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 49 ms
64,964 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 52 ms
66,092 KB
testcase_14 AC 52 ms
67,836 KB
testcase_15 WA -
testcase_16 AC 89 ms
96,848 KB
testcase_17 WA -
testcase_18 AC 39 ms
54,568 KB
testcase_19 AC 80 ms
89,320 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 114 ms
109,792 KB
testcase_24 AC 69 ms
83,440 KB
testcase_25 AC 81 ms
94,568 KB
testcase_26 WA -
testcase_27 AC 119 ms
109,760 KB
testcase_28 AC 69 ms
84,452 KB
testcase_29 AC 82 ms
93,372 KB
testcase_30 AC 98 ms
104,676 KB
testcase_31 AC 50 ms
64,724 KB
testcase_32 AC 93 ms
100,492 KB
testcase_33 AC 123 ms
103,120 KB
testcase_34 AC 124 ms
103,116 KB
testcase_35 AC 127 ms
103,040 KB
testcase_36 AC 122 ms
103,072 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():
    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