結果

問題 No.1972 Modulo Set
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-10 21:36:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,528 KB
最終ジャッジ日時 2024-09-21 06:03:22
合計ジャッジ時間 6,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 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 36 ms
11,392 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 41 ms
12,156 KB
testcase_14 AC 41 ms
12,160 KB
testcase_15 WA -
testcase_16 AC 140 ms
21,660 KB
testcase_17 AC 64 ms
15,212 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 128 ms
21,384 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 118 ms
22,344 KB
testcase_23 AC 247 ms
31,792 KB
testcase_24 AC 114 ms
20,988 KB
testcase_25 AC 167 ms
28,508 KB
testcase_26 WA -
testcase_27 AC 273 ms
40,132 KB
testcase_28 AC 118 ms
21,004 KB
testcase_29 AC 170 ms
27,896 KB
testcase_30 AC 222 ms
29,144 KB
testcase_31 AC 39 ms
12,032 KB
testcase_32 AC 203 ms
28,044 KB
testcase_33 AC 298 ms
47,272 KB
testcase_34 AC 305 ms
47,528 KB
testcase_35 AC 301 ms
47,272 KB
testcase_36 AC 298 ms
47,268 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
    ans += max(d[k], d[kk])
    used.add(k)
    used.add(kk)

print(ans)
0