結果

問題 No.1972 Modulo Set
ユーザー vwxyzvwxyz
提出日時 2024-08-15 11:01:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,996 KB
最終ジャッジ日時 2024-08-15 11:01:40
合計ジャッジ時間 8,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 55 ms
13,372 KB
testcase_04 AC 71 ms
14,032 KB
testcase_05 AC 76 ms
14,536 KB
testcase_06 AC 104 ms
16,532 KB
testcase_07 AC 146 ms
19,864 KB
testcase_08 AC 80 ms
15,040 KB
testcase_09 AC 35 ms
11,520 KB
testcase_10 AC 71 ms
14,272 KB
testcase_11 AC 143 ms
19,512 KB
testcase_12 AC 47 ms
12,288 KB
testcase_13 AC 42 ms
11,904 KB
testcase_14 AC 41 ms
11,904 KB
testcase_15 AC 160 ms
18,840 KB
testcase_16 AC 179 ms
23,356 KB
testcase_17 AC 75 ms
15,360 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 160 ms
22,916 KB
testcase_20 AC 223 ms
23,460 KB
testcase_21 AC 87 ms
16,096 KB
testcase_22 AC 141 ms
21,768 KB
testcase_23 AC 296 ms
30,512 KB
testcase_24 AC 127 ms
20,956 KB
testcase_25 AC 182 ms
26,504 KB
testcase_26 AC 209 ms
21,848 KB
testcase_27 AC 331 ms
32,820 KB
testcase_28 AC 139 ms
20,736 KB
testcase_29 AC 195 ms
25,672 KB
testcase_30 AC 265 ms
28,928 KB
testcase_31 AC 39 ms
11,776 KB
testcase_32 AC 220 ms
26,840 KB
testcase_33 AC 370 ms
42,988 KB
testcase_34 AC 358 ms
42,980 KB
testcase_35 AC 347 ms
42,996 KB
testcase_36 AC 379 ms
42,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,M=map(int,input().split())
A=list(map(int,input().split()))
cnt=defaultdict(int)
st=set()
for a in A:
    cnt[a%M]+=1
    st.add(min(a%M,(-a)%M))
ans=0
for a in st:
    if a==0:
        ans+=min(1,cnt[a])
    elif a*2==M:
        ans+=min(1,cnt[a])
    else:
        ans+=max(cnt[a],cnt[(-a)%M])
print(ans)
0