結果

問題 No.1972 Modulo Set
ユーザー H20H20
提出日時 2022-06-10 21:40:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-10-05 01:28:42
合計ジャッジ時間 4,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 58 ms
69,632 KB
testcase_04 AC 65 ms
72,704 KB
testcase_05 AC 61 ms
73,984 KB
testcase_06 AC 65 ms
81,536 KB
testcase_07 AC 84 ms
89,728 KB
testcase_08 AC 56 ms
73,600 KB
testcase_09 AC 51 ms
64,896 KB
testcase_10 AC 60 ms
72,832 KB
testcase_11 AC 82 ms
88,448 KB
testcase_12 AC 62 ms
67,712 KB
testcase_13 AC 55 ms
66,176 KB
testcase_14 AC 56 ms
67,400 KB
testcase_15 AC 90 ms
92,416 KB
testcase_16 AC 95 ms
97,148 KB
testcase_17 AC 63 ms
73,856 KB
testcase_18 AC 41 ms
53,504 KB
testcase_19 AC 83 ms
89,240 KB
testcase_20 AC 98 ms
98,688 KB
testcase_21 AC 67 ms
76,800 KB
testcase_22 AC 82 ms
87,040 KB
testcase_23 AC 123 ms
107,392 KB
testcase_24 AC 77 ms
83,968 KB
testcase_25 AC 91 ms
94,208 KB
testcase_26 AC 101 ms
96,256 KB
testcase_27 AC 120 ms
108,032 KB
testcase_28 AC 77 ms
84,352 KB
testcase_29 AC 90 ms
93,056 KB
testcase_30 AC 107 ms
104,984 KB
testcase_31 AC 55 ms
65,024 KB
testcase_32 AC 99 ms
100,480 KB
testcase_33 AC 135 ms
101,232 KB
testcase_34 AC 136 ms
100,988 KB
testcase_35 AC 133 ms
101,108 KB
testcase_36 AC 134 ms
100,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,M = map(int, input().split())
A = list(map(int, input().split()))
CA = collections.Counter()
for a in A:
    CA[a%M]+=1
    CA[M-a%M]+=0
ans = 0
for k,v in CA.items():
    if k*2==M or k==0:
        ans+=2
    elif k==M:
        pass
    else:
        ans+=max(CA[k],CA[M-k])
print(ans//2)
0