結果

問題 No.1972 Modulo Set
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-06-11 17:11:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 350 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 848,756 KB
最終ジャッジ日時 2024-09-22 04:23:16
合計ジャッジ時間 6,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,612 KB
testcase_01 AC 38 ms
52,332 KB
testcase_02 AC 36 ms
52,688 KB
testcase_03 AC 49 ms
67,876 KB
testcase_04 AC 52 ms
69,652 KB
testcase_05 AC 53 ms
71,724 KB
testcase_06 AC 59 ms
77,420 KB
testcase_07 AC 67 ms
86,508 KB
testcase_08 AC 51 ms
71,896 KB
testcase_09 AC 47 ms
63,004 KB
testcase_10 AC 51 ms
69,272 KB
testcase_11 AC 68 ms
85,772 KB
testcase_12 AC 48 ms
65,596 KB
testcase_13 AC 53 ms
70,216 KB
testcase_14 AC 52 ms
68,208 KB
testcase_15 AC 71 ms
88,604 KB
testcase_16 AC 76 ms
92,836 KB
testcase_17 AC 54 ms
73,376 KB
testcase_18 AC 42 ms
60,376 KB
testcase_19 AC 73 ms
89,100 KB
testcase_20 AC 80 ms
95,208 KB
testcase_21 AC 56 ms
73,384 KB
testcase_22 AC 71 ms
88,092 KB
testcase_23 AC 161 ms
188,140 KB
testcase_24 AC 136 ms
173,036 KB
testcase_25 AC 157 ms
198,004 KB
testcase_26 AC 79 ms
95,056 KB
testcase_27 AC 205 ms
237,948 KB
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


D = {}
for i in range(M):
    D[i] = 0

for i in range(N):
    D[A[i] % M] += 1
        
ans = 0


for i in range(1,M//2+1):
    if i == M-i:
        if D[i]:
            ans += 1
    else:
        ans += max(D[i],D[M-i])
    #print(i,ans)
if D[0]:
    ans += 1
print(ans)
#print(D)
0