結果

問題 No.1972 Modulo Set
ユーザー chineristACchineristAC
提出日時 2022-06-10 21:42:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 107,640 KB
最終ジャッジ日時 2024-10-05 01:29:53
合計ジャッジ時間 4,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,764 KB
testcase_01 AC 41 ms
57,104 KB
testcase_02 AC 39 ms
55,664 KB
testcase_03 AC 57 ms
72,468 KB
testcase_04 AC 62 ms
74,752 KB
testcase_05 AC 60 ms
76,804 KB
testcase_06 AC 67 ms
82,428 KB
testcase_07 AC 81 ms
90,808 KB
testcase_08 AC 59 ms
76,048 KB
testcase_09 AC 52 ms
66,204 KB
testcase_10 AC 61 ms
75,312 KB
testcase_11 AC 79 ms
89,564 KB
testcase_12 AC 55 ms
71,676 KB
testcase_13 AC 51 ms
67,484 KB
testcase_14 AC 54 ms
67,580 KB
testcase_15 AC 92 ms
92,816 KB
testcase_16 AC 87 ms
94,908 KB
testcase_17 AC 63 ms
77,456 KB
testcase_18 AC 42 ms
56,428 KB
testcase_19 AC 82 ms
89,976 KB
testcase_20 AC 92 ms
96,376 KB
testcase_21 AC 65 ms
78,812 KB
testcase_22 AC 73 ms
85,428 KB
testcase_23 AC 99 ms
102,992 KB
testcase_24 AC 64 ms
79,868 KB
testcase_25 AC 72 ms
87,088 KB
testcase_26 AC 91 ms
97,796 KB
testcase_27 AC 101 ms
104,468 KB
testcase_28 AC 63 ms
78,832 KB
testcase_29 AC 70 ms
87,052 KB
testcase_30 AC 83 ms
94,196 KB
testcase_31 AC 48 ms
65,320 KB
testcase_32 AC 84 ms
91,320 KB
testcase_33 AC 106 ms
107,640 KB
testcase_34 AC 102 ms
107,492 KB
testcase_35 AC 104 ms
107,452 KB
testcase_36 AC 110 ms
107,448 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)%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