結果

問題 No.1972 Modulo Set
ユーザー pitPpitP
提出日時 2022-06-10 21:53:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,600 KB
最終ジャッジ日時 2024-09-21 06:13:38
合計ジャッジ時間 6,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 59 ms
13,372 KB
testcase_04 AC 75 ms
14,148 KB
testcase_05 WA -
testcase_06 AC 116 ms
16,760 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 34 ms
11,264 KB
testcase_10 WA -
testcase_11 AC 165 ms
19,508 KB
testcase_12 AC 49 ms
12,160 KB
testcase_13 AC 38 ms
11,648 KB
testcase_14 AC 40 ms
11,776 KB
testcase_15 AC 172 ms
19,120 KB
testcase_16 AC 187 ms
21,516 KB
testcase_17 AC 80 ms
14,968 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 149 ms
20,856 KB
testcase_20 AC 182 ms
21,352 KB
testcase_21 AC 92 ms
15,580 KB
testcase_22 AC 128 ms
20,828 KB
testcase_23 AC 237 ms
26,648 KB
testcase_24 AC 105 ms
18,972 KB
testcase_25 AC 150 ms
24,560 KB
testcase_26 WA -
testcase_27 AC 239 ms
26,564 KB
testcase_28 AC 109 ms
18,876 KB
testcase_29 AC 157 ms
23,620 KB
testcase_30 AC 196 ms
24,996 KB
testcase_31 AC 38 ms
11,520 KB
testcase_32 AC 180 ms
24,628 KB
testcase_33 AC 274 ms
37,600 KB
testcase_34 AC 272 ms
37,588 KB
testcase_35 AC 273 ms
37,488 KB
testcase_36 AC 276 ms
37,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,m = map(int,input().split())
a = list(map(int,input().split()))
b = [num%m for num in a]

d = defaultdict(int)
ans = 0
for num in b:
    if num == 0:
        ans |= 1
    else:
        d[num] += 1

for num in b:
    ans += max(d[num],d[m-num])
    d[num] = 0
    d[m-num] = 0

print(ans)
0