結果

問題 No.1972 Modulo Set
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-10 21:37:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,312 KB
最終ジャッジ日時 2024-09-21 06:04:15
合計ジャッジ時間 6,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
11,264 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 37 ms
12,156 KB
testcase_14 AC 37 ms
12,160 KB
testcase_15 WA -
testcase_16 AC 145 ms
21,584 KB
testcase_17 AC 59 ms
15,224 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 114 ms
20,996 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 111 ms
22,124 KB
testcase_23 AC 225 ms
31,720 KB
testcase_24 AC 107 ms
21,064 KB
testcase_25 AC 153 ms
28,412 KB
testcase_26 WA -
testcase_27 AC 237 ms
40,064 KB
testcase_28 AC 111 ms
21,160 KB
testcase_29 AC 155 ms
27,760 KB
testcase_30 AC 197 ms
29,160 KB
testcase_31 AC 36 ms
12,160 KB
testcase_32 AC 179 ms
28,096 KB
testcase_33 AC 267 ms
47,188 KB
testcase_34 AC 283 ms
47,116 KB
testcase_35 AC 266 ms
47,292 KB
testcase_36 AC 269 ms
47,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, M = map(int, input().split())
A = list(map(int, input().split()))

d = defaultdict(int)
for a in A:
    d[a % M] += 1

ans = 0
used = set()
for k in list(d.keys()):
    kk = M - k
    if k in used:
        continue
    if kk in used:
        continue
    if k == kk:
        ans += min(1, d[k])
        used.add(k)
    else:
        ans += max(d[k], d[kk])
        used.add(k)
        used.add(kk)

print(ans)
0