結果

問題 No.1972 Modulo Set
コンテスト
ユーザー chineristAC
提出日時 2022-06-10 21:42:19
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 82 ms / 2,000 ms
+ 308µs
コード長 574 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 73 ms
コンパイル使用メモリ 81,152 KB
実行使用メモリ 111,744 KB
最終ジャッジ日時 2026-09-10 10:43:06
合計ジャッジ時間 4,525 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys,random,bisect
from collections import deque,defaultdict,Counter
from heapq import heapify,heappop,heappush
from itertools import cycle, permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()
A = li()

S = {a%M:0 for a in A}
for a in A:
    a %= M
    S[a] += 1
    
res = 0
for a in S:
    if (M-a)%M not in S:
        res += S[a]
    else:
        if a < (M-a)%M:
            res += max(S[a],S[M-a])
        elif a==(M-a)%M:
            res += 1

print(res)
0