結果

問題 No.1972 Modulo Set
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-06-12 12:15:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 126,888 KB
最終ジャッジ日時 2024-10-05 01:45:31
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,612 KB
testcase_01 AC 38 ms
53,124 KB
testcase_02 AC 36 ms
53,020 KB
testcase_03 AC 56 ms
72,076 KB
testcase_04 AC 54 ms
72,244 KB
testcase_05 AC 60 ms
75,104 KB
testcase_06 AC 68 ms
82,276 KB
testcase_07 AC 74 ms
90,104 KB
testcase_08 AC 54 ms
73,584 KB
testcase_09 AC 51 ms
65,696 KB
testcase_10 AC 60 ms
73,112 KB
testcase_11 AC 74 ms
88,584 KB
testcase_12 AC 52 ms
69,428 KB
testcase_13 AC 49 ms
66,904 KB
testcase_14 AC 53 ms
68,872 KB
testcase_15 AC 88 ms
95,984 KB
testcase_16 AC 93 ms
101,596 KB
testcase_17 AC 67 ms
77,512 KB
testcase_18 AC 38 ms
53,056 KB
testcase_19 AC 97 ms
97,668 KB
testcase_20 AC 101 ms
105,588 KB
testcase_21 AC 71 ms
80,672 KB
testcase_22 AC 86 ms
96,860 KB
testcase_23 AC 134 ms
125,280 KB
testcase_24 AC 81 ms
94,344 KB
testcase_25 AC 96 ms
109,184 KB
testcase_26 AC 96 ms
97,328 KB
testcase_27 AC 135 ms
126,888 KB
testcase_28 AC 79 ms
95,836 KB
testcase_29 AC 93 ms
108,312 KB
testcase_30 AC 112 ms
124,936 KB
testcase_31 AC 51 ms
68,048 KB
testcase_32 AC 106 ms
119,224 KB
testcase_33 AC 146 ms
123,436 KB
testcase_34 AC 146 ms
123,156 KB
testcase_35 AC 150 ms
123,260 KB
testcase_36 AC 153 ms
123,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from _collections import defaultdict
n,m=map(int,input().split())
s=set()
a=list(map(int,input().split()))
for i in range(n):a[i]%=m
cnt=defaultdict(int)

ans=0
nod=set()

for x in a:
    cnt[x]+=1
for x in cnt:
    nod.add(x)
    nod.add((m-x)%m)

for x in nod:
    y=(m-x)%m
    if y<x:continue
    if x==y:
        ans+=min(1,cnt[x])
        continue
    ans+=max(cnt[x],cnt[y])
print(ans)





0