結果

問題 No.1972 Modulo Set
ユーザー chineristACchineristAC
提出日時 2022-06-10 21:41:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-21 06:06:52
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,552 KB
testcase_01 AC 48 ms
55,552 KB
testcase_02 AC 45 ms
55,424 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 56 ms
66,048 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 56 ms
66,304 KB
testcase_14 AC 57 ms
67,072 KB
testcase_15 WA -
testcase_16 AC 98 ms
94,848 KB
testcase_17 AC 69 ms
76,544 KB
testcase_18 AC 45 ms
55,680 KB
testcase_19 AC 89 ms
90,240 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 78 ms
85,120 KB
testcase_23 AC 108 ms
103,168 KB
testcase_24 AC 71 ms
79,360 KB
testcase_25 AC 81 ms
87,168 KB
testcase_26 WA -
testcase_27 AC 108 ms
104,576 KB
testcase_28 AC 68 ms
78,208 KB
testcase_29 AC 76 ms
85,632 KB
testcase_30 AC 87 ms
94,208 KB
testcase_31 AC 53 ms
65,408 KB
testcase_32 AC 82 ms
91,008 KB
testcase_33 AC 114 ms
107,392 KB
testcase_34 AC 111 ms
107,520 KB
testcase_35 AC 114 ms
107,520 KB
testcase_36 AC 116 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 not in S:
        res += S[a]
    else:
        if a < M-a:
            res += max(S[a],S[M-a])
        elif a==M-a:
            res += 1

print(res)
0