結果

問題 No.1972 Modulo Set
ユーザー terasaterasa
提出日時 2022-06-10 22:14:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 132,056 KB
最終ジャッジ日時 2024-10-05 01:33:14
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,756 KB
testcase_01 AC 41 ms
56,204 KB
testcase_02 AC 40 ms
55,752 KB
testcase_03 AC 64 ms
73,980 KB
testcase_04 AC 65 ms
75,388 KB
testcase_05 AC 63 ms
77,052 KB
testcase_06 AC 75 ms
83,924 KB
testcase_07 AC 86 ms
89,120 KB
testcase_08 AC 60 ms
76,552 KB
testcase_09 AC 53 ms
67,188 KB
testcase_10 AC 61 ms
75,720 KB
testcase_11 AC 83 ms
87,856 KB
testcase_12 AC 60 ms
72,092 KB
testcase_13 AC 55 ms
68,664 KB
testcase_14 AC 55 ms
69,040 KB
testcase_15 AC 91 ms
89,344 KB
testcase_16 AC 97 ms
93,444 KB
testcase_17 AC 67 ms
79,440 KB
testcase_18 AC 41 ms
55,284 KB
testcase_19 AC 91 ms
92,648 KB
testcase_20 AC 99 ms
95,520 KB
testcase_21 AC 74 ms
82,336 KB
testcase_22 AC 86 ms
91,344 KB
testcase_23 AC 126 ms
116,516 KB
testcase_24 AC 80 ms
95,076 KB
testcase_25 AC 97 ms
98,076 KB
testcase_26 AC 107 ms
91,884 KB
testcase_27 AC 141 ms
122,288 KB
testcase_28 AC 89 ms
97,212 KB
testcase_29 AC 108 ms
108,948 KB
testcase_30 AC 125 ms
108,268 KB
testcase_31 AC 58 ms
67,608 KB
testcase_32 AC 115 ms
104,620 KB
testcase_33 AC 159 ms
132,056 KB
testcase_34 AC 159 ms
131,608 KB
testcase_35 AC 158 ms
131,552 KB
testcase_36 AC 161 ms
131,976 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)
    if k == M - k:
        ans += 1
    else:
        ans += max(D[k], D[M - k])
print(ans + zero)
0