結果

問題 No.1972 Modulo Set
ユーザー terasaterasa
提出日時 2022-06-10 22:13:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,144 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 131,840 KB
最終ジャッジ日時 2024-09-21 06:26:52
合計ジャッジ時間 5,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 46 ms
54,400 KB
testcase_02 AC 47 ms
54,912 KB
testcase_03 AC 70 ms
72,576 KB
testcase_04 AC 72 ms
75,520 KB
testcase_05 WA -
testcase_06 AC 92 ms
83,840 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 61 ms
66,176 KB
testcase_10 WA -
testcase_11 AC 98 ms
87,680 KB
testcase_12 AC 70 ms
72,192 KB
testcase_13 AC 66 ms
67,840 KB
testcase_14 AC 61 ms
68,224 KB
testcase_15 AC 110 ms
89,472 KB
testcase_16 AC 114 ms
93,440 KB
testcase_17 AC 80 ms
79,360 KB
testcase_18 AC 46 ms
54,400 KB
testcase_19 AC 109 ms
92,800 KB
testcase_20 AC 120 ms
95,744 KB
testcase_21 AC 87 ms
82,440 KB
testcase_22 AC 102 ms
92,288 KB
testcase_23 AC 154 ms
116,608 KB
testcase_24 AC 94 ms
94,208 KB
testcase_25 AC 122 ms
98,944 KB
testcase_26 WA -
testcase_27 AC 167 ms
121,856 KB
testcase_28 AC 97 ms
95,616 KB
testcase_29 AC 114 ms
108,928 KB
testcase_30 AC 136 ms
108,508 KB
testcase_31 AC 58 ms
66,944 KB
testcase_32 AC 127 ms
104,448 KB
testcase_33 AC 179 ms
131,840 KB
testcase_34 AC 174 ms
131,548 KB
testcase_35 AC 172 ms
131,328 KB
testcase_36 AC 171 ms
131,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N, M = map(int, input().split())
A = list(map(int, input().split()))

D = defaultdict(int)
checked = set()
zero = 0
for a in A:
    p = a % M
    if p == 0:
        zero = 1
        continue
    D[a % M] += 1
    D[M - a % M] += 0
ans = 0
for k in D.keys():
    if k in checked:
        continue
    checked.add(k)
    checked.add(M - k)
    ans += max(D[k], D[M - k])
print(ans + zero)
0