結果

問題 No.1972 Modulo Set
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-06-12 12:14:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 127,008 KB
最終ジャッジ日時 2024-09-22 22:28:15
合計ジャッジ時間 4,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,944 KB
testcase_01 AC 37 ms
52,068 KB
testcase_02 AC 36 ms
52,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 56 ms
65,500 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
67,604 KB
testcase_14 AC 56 ms
67,920 KB
testcase_15 WA -
testcase_16 AC 101 ms
101,848 KB
testcase_17 AC 68 ms
78,352 KB
testcase_18 AC 39 ms
52,600 KB
testcase_19 AC 98 ms
97,756 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 90 ms
97,112 KB
testcase_23 AC 142 ms
125,188 KB
testcase_24 AC 86 ms
94,916 KB
testcase_25 AC 104 ms
110,144 KB
testcase_26 WA -
testcase_27 AC 139 ms
127,008 KB
testcase_28 AC 87 ms
94,664 KB
testcase_29 AC 101 ms
109,316 KB
testcase_30 AC 121 ms
124,640 KB
testcase_31 AC 54 ms
66,952 KB
testcase_32 AC 115 ms
119,384 KB
testcase_33 AC 157 ms
123,216 KB
testcase_34 AC 157 ms
123,620 KB
testcase_35 AC 161 ms
123,372 KB
testcase_36 AC 157 ms
123,068 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
    ans+=max(cnt[x],cnt[y])
print(ans)





0