結果

問題 No.1972 Modulo Set
ユーザー titiatitia
提出日時 2022-06-10 21:30:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 40,160 KB
最終ジャッジ日時 2024-10-05 01:25:21
合計ジャッジ時間 5,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 43 ms
13,504 KB
testcase_04 AC 49 ms
13,884 KB
testcase_05 AC 52 ms
14,484 KB
testcase_06 AC 71 ms
16,520 KB
testcase_07 AC 95 ms
19,732 KB
testcase_08 AC 56 ms
15,224 KB
testcase_09 AC 30 ms
11,136 KB
testcase_10 AC 50 ms
13,916 KB
testcase_11 AC 95 ms
19,372 KB
testcase_12 AC 37 ms
12,032 KB
testcase_13 AC 35 ms
11,776 KB
testcase_14 AC 36 ms
11,904 KB
testcase_15 AC 118 ms
20,056 KB
testcase_16 AC 133 ms
20,024 KB
testcase_17 AC 61 ms
14,736 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 119 ms
19,812 KB
testcase_20 AC 141 ms
21,484 KB
testcase_21 AC 67 ms
15,360 KB
testcase_22 AC 106 ms
19,672 KB
testcase_23 AC 215 ms
28,160 KB
testcase_24 AC 101 ms
17,944 KB
testcase_25 AC 143 ms
25,316 KB
testcase_26 AC 143 ms
21,336 KB
testcase_27 AC 232 ms
35,168 KB
testcase_28 AC 104 ms
17,944 KB
testcase_29 AC 149 ms
24,732 KB
testcase_30 AC 194 ms
25,892 KB
testcase_31 AC 34 ms
11,776 KB
testcase_32 AC 172 ms
25,248 KB
testcase_33 AC 263 ms
40,160 KB
testcase_34 AC 263 ms
40,116 KB
testcase_35 AC 265 ms
39,976 KB
testcase_36 AC 271 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import Counter

N,M=map(int,input().split())
A=list(map(int,input().split()))

X=Counter()

for a in A:
    X[a%M]+=1

ANS=0
USE=set()

for x in X:
    #print(x,USE)
    if x!=M/2 and x!=0 and not(x in USE):
        y=M-x

        ANS+=max(X[x],X[y])
        USE.add(x)
        USE.add(y)
    elif x==M/2:
        ANS+=1
    elif x==0:
        ANS+=1

print(ANS)

0