結果

問題 No.1972 Modulo Set
ユーザー pitPpitP
提出日時 2022-06-10 22:05:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 105,140 KB
最終ジャッジ日時 2024-10-05 01:32:20
合計ジャッジ時間 4,892 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,128 KB
testcase_01 AC 47 ms
54,260 KB
testcase_02 AC 47 ms
54,416 KB
testcase_03 AC 66 ms
72,596 KB
testcase_04 AC 66 ms
73,340 KB
testcase_05 AC 71 ms
75,840 KB
testcase_06 AC 81 ms
81,564 KB
testcase_07 AC 104 ms
90,364 KB
testcase_08 AC 70 ms
76,232 KB
testcase_09 AC 62 ms
65,748 KB
testcase_10 AC 72 ms
75,412 KB
testcase_11 AC 95 ms
89,300 KB
testcase_12 AC 63 ms
69,728 KB
testcase_13 AC 57 ms
66,132 KB
testcase_14 AC 57 ms
66,788 KB
testcase_15 AC 99 ms
92,604 KB
testcase_16 AC 104 ms
94,688 KB
testcase_17 AC 78 ms
78,616 KB
testcase_18 AC 43 ms
55,072 KB
testcase_19 AC 98 ms
90,416 KB
testcase_20 AC 108 ms
96,100 KB
testcase_21 AC 76 ms
79,268 KB
testcase_22 AC 96 ms
88,360 KB
testcase_23 AC 125 ms
104,596 KB
testcase_24 AC 78 ms
83,708 KB
testcase_25 AC 92 ms
94,552 KB
testcase_26 AC 114 ms
92,996 KB
testcase_27 AC 127 ms
104,676 KB
testcase_28 AC 77 ms
83,808 KB
testcase_29 AC 87 ms
93,584 KB
testcase_30 AC 103 ms
104,508 KB
testcase_31 AC 54 ms
65,196 KB
testcase_32 AC 100 ms
100,136 KB
testcase_33 AC 142 ms
105,032 KB
testcase_34 AC 136 ms
105,140 KB
testcase_35 AC 133 ms
105,096 KB
testcase_36 AC 137 ms
105,028 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

if m%2:
    for num in b:
        ans += max(d[num],d[m-num])
        d[num] = 0
        d[m-num] = 0
else:
    boo = False
    for num in b:
        if num * 2 == m:
            boo = True
            continue
        ans += max(d[num],d[m-num])
        d[num] = 0
        d[m-num] = 0
    if boo:
        ans += 1

print(ans)
0