結果

問題 No.1972 Modulo Set
ユーザー roarisroaris
提出日時 2022-06-10 22:20:22
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 337 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 694,160 KB
最終ジャッジ日時 2024-09-21 06:30:01
合計ジャッジ時間 7,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,764 KB
testcase_01 AC 40 ms
54,016 KB
testcase_02 AC 41 ms
53,620 KB
testcase_03 AC 60 ms
67,968 KB
testcase_04 AC 60 ms
70,400 KB
testcase_05 AC 60 ms
71,552 KB
testcase_06 AC 67 ms
77,824 KB
testcase_07 AC 77 ms
86,784 KB
testcase_08 AC 60 ms
72,064 KB
testcase_09 AC 56 ms
65,536 KB
testcase_10 AC 60 ms
70,528 KB
testcase_11 AC 77 ms
84,736 KB
testcase_12 AC 58 ms
67,584 KB
testcase_13 AC 64 ms
72,192 KB
testcase_14 AC 63 ms
70,528 KB
testcase_15 AC 92 ms
91,648 KB
testcase_16 AC 99 ms
93,696 KB
testcase_17 AC 72 ms
75,520 KB
testcase_18 AC 49 ms
60,928 KB
testcase_19 AC 95 ms
89,344 KB
testcase_20 AC 100 ms
94,592 KB
testcase_21 AC 73 ms
77,056 KB
testcase_22 AC 92 ms
91,200 KB
testcase_23 AC 215 ms
171,052 KB
testcase_24 AC 174 ms
175,104 KB
testcase_25 AC 202 ms
199,424 KB
testcase_26 AC 101 ms
95,616 KB
testcase_27 AC 237 ms
219,812 KB
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

for Ai in A:
    cnt[Ai%M] += 1

ans = 0

for i in range(1, (M+1)//2):
    ans += max(cnt[i], cnt[M-i])

ans += min(1, cnt[0])

if M%2==0:
    ans += min(1, cnt[M//2])

print(ans)
0