結果

問題 No.1972 Modulo Set
ユーザー minimumminimum
提出日時 2022-06-10 21:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 125,268 KB
最終ジャッジ日時 2024-10-05 01:27:46
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,248 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 52 ms
71,168 KB
testcase_04 AC 57 ms
73,728 KB
testcase_05 AC 56 ms
73,984 KB
testcase_06 AC 63 ms
81,408 KB
testcase_07 AC 74 ms
89,984 KB
testcase_08 AC 52 ms
72,704 KB
testcase_09 AC 48 ms
65,280 KB
testcase_10 AC 57 ms
73,984 KB
testcase_11 AC 75 ms
88,576 KB
testcase_12 AC 53 ms
69,504 KB
testcase_13 AC 48 ms
67,200 KB
testcase_14 AC 48 ms
67,328 KB
testcase_15 AC 79 ms
92,288 KB
testcase_16 AC 86 ms
96,512 KB
testcase_17 AC 59 ms
77,056 KB
testcase_18 AC 36 ms
53,248 KB
testcase_19 AC 83 ms
92,928 KB
testcase_20 AC 92 ms
98,688 KB
testcase_21 AC 62 ms
79,744 KB
testcase_22 AC 80 ms
96,128 KB
testcase_23 AC 130 ms
114,048 KB
testcase_24 AC 85 ms
92,800 KB
testcase_25 AC 99 ms
108,160 KB
testcase_26 AC 97 ms
96,300 KB
testcase_27 AC 134 ms
114,572 KB
testcase_28 AC 81 ms
94,848 KB
testcase_29 AC 95 ms
107,520 KB
testcase_30 AC 116 ms
125,268 KB
testcase_31 AC 50 ms
66,048 KB
testcase_32 AC 106 ms
118,528 KB
testcase_33 AC 150 ms
116,808 KB
testcase_34 AC 148 ms
116,944 KB
testcase_35 AC 153 ms
117,068 KB
testcase_36 AC 152 ms
117,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


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

r = defaultdict(int)
for i in range(N):
    r[A[i] % M] += 1
    if M - (A[i] % M) not in r:
        r[M - (A[i] % M)] = 0

ans = 0
done = set()
if 0 in r:
    ans += 1
    done.add(0)
    done.add(M)
if M % 2 == 0 and (M // 2 in r):
    ans += 1
    done.add(M // 2)

for i in r:
    if i in done:
        continue
    else:
        ans += max(r[i], r[M - i])
        done.add(i)
        done.add(M - i)

print(ans)
0