結果

問題 No.1972 Modulo Set
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-06-11 17:14:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 350 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 817,768 KB
最終ジャッジ日時 2024-09-22 04:26:41
合計ジャッジ時間 8,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 45 ms
13,020 KB
testcase_04 AC 52 ms
13,888 KB
testcase_05 AC 55 ms
14,524 KB
testcase_06 AC 70 ms
16,760 KB
testcase_07 AC 93 ms
19,844 KB
testcase_08 AC 58 ms
15,344 KB
testcase_09 AC 36 ms
11,520 KB
testcase_10 AC 51 ms
14,136 KB
testcase_11 AC 91 ms
19,496 KB
testcase_12 AC 40 ms
12,160 KB
testcase_13 AC 62 ms
16,252 KB
testcase_14 AC 55 ms
13,552 KB
testcase_15 AC 107 ms
18,824 KB
testcase_16 AC 125 ms
20,608 KB
testcase_17 AC 60 ms
14,700 KB
testcase_18 AC 33 ms
11,392 KB
testcase_19 AC 116 ms
19,576 KB
testcase_20 AC 134 ms
20,544 KB
testcase_21 AC 65 ms
15,316 KB
testcase_22 AC 113 ms
19,928 KB
testcase_23 AC 481 ms
57,524 KB
testcase_24 AC 424 ms
54,240 KB
testcase_25 AC 535 ms
97,244 KB
testcase_26 AC 128 ms
22,180 KB
testcase_27 AC 632 ms
99,220 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