結果

問題 No.1972 Modulo Set
ユーザー mkawa2mkawa2
提出日時 2022-06-10 22:28:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 100,088 KB
最終ジャッジ日時 2024-10-05 01:34:53
合計ジャッジ時間 3,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,620 KB
testcase_01 AC 39 ms
53,656 KB
testcase_02 AC 37 ms
54,304 KB
testcase_03 AC 54 ms
70,720 KB
testcase_04 AC 55 ms
71,612 KB
testcase_05 AC 53 ms
73,080 KB
testcase_06 AC 60 ms
78,336 KB
testcase_07 AC 74 ms
84,184 KB
testcase_08 AC 51 ms
71,848 KB
testcase_09 AC 49 ms
66,828 KB
testcase_10 AC 56 ms
72,080 KB
testcase_11 AC 77 ms
84,396 KB
testcase_12 AC 53 ms
70,900 KB
testcase_13 AC 48 ms
65,880 KB
testcase_14 AC 48 ms
66,140 KB
testcase_15 AC 80 ms
87,252 KB
testcase_16 AC 85 ms
89,488 KB
testcase_17 AC 61 ms
75,748 KB
testcase_18 AC 36 ms
55,088 KB
testcase_19 AC 78 ms
86,148 KB
testcase_20 AC 85 ms
90,844 KB
testcase_21 AC 64 ms
77,340 KB
testcase_22 AC 70 ms
83,136 KB
testcase_23 AC 93 ms
100,088 KB
testcase_24 AC 60 ms
77,828 KB
testcase_25 AC 69 ms
84,800 KB
testcase_26 AC 90 ms
92,760 KB
testcase_27 AC 94 ms
98,760 KB
testcase_28 AC 57 ms
75,524 KB
testcase_29 AC 63 ms
83,356 KB
testcase_30 AC 70 ms
89,812 KB
testcase_31 AC 44 ms
63,804 KB
testcase_32 AC 68 ms
88,288 KB
testcase_33 AC 99 ms
98,172 KB
testcase_34 AC 107 ms
98,084 KB
testcase_35 AC 105 ms
98,168 KB
testcase_36 AC 106 ms
97,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n,m=map(int,input().split())
ac=Counter(int(a)%m for a in input().split())
ans=0
for a,c in ac.items():
    if a==0 or a*2==m:continue
    b=-a%m
    if c<ac[b]:continue
    if c==ac[b] and a<b:continue
    ans+=c
if ac[0]:ans+=1
if m%2==0 and ac[m//2]:ans+=1
print(ans)
0