結果

問題 No.1972 Modulo Set
ユーザー ikomaikoma
提出日時 2022-06-10 21:55:03
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 332 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-09-21 06:14:26
合計ジャッジ時間 4,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 52 ms
64,384 KB
testcase_04 AC 54 ms
66,304 KB
testcase_05 AC 52 ms
67,840 KB
testcase_06 AC 58 ms
73,216 KB
testcase_07 AC 67 ms
81,536 KB
testcase_08 AC 53 ms
69,120 KB
testcase_09 AC 47 ms
59,904 KB
testcase_10 AC 52 ms
67,328 KB
testcase_11 AC 65 ms
79,744 KB
testcase_12 AC 49 ms
63,104 KB
testcase_13 AC 47 ms
61,056 KB
testcase_14 AC 47 ms
61,648 KB
testcase_15 AC 63 ms
79,744 KB
testcase_16 AC 64 ms
80,128 KB
testcase_17 AC 53 ms
66,688 KB
testcase_18 AC 43 ms
57,088 KB
testcase_19 AC 61 ms
74,624 KB
testcase_20 AC 66 ms
78,976 KB
testcase_21 AC 55 ms
68,480 KB
testcase_22 AC 59 ms
73,088 KB
testcase_23 AC 72 ms
87,168 KB
testcase_24 AC 57 ms
72,704 KB
testcase_25 AC 60 ms
78,592 KB
testcase_26 AC 69 ms
85,504 KB
testcase_27 AC 73 ms
88,320 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 76 ms
92,800 KB
testcase_34 AC 81 ms
92,544 KB
testcase_35 AC 81 ms
92,928 KB
testcase_36 AC 80 ms
92,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

cnt=[0]*M
for a in A:
    cnt[a%M]+=1
ans=0
if cnt[0]>0:
    ans = 1

for i in range(1,(M+1)//2):
    if cnt[i] > cnt[M-i]:
        ans += cnt[i]
    else:
        ans += cnt[M-i]
if M%2==0 and cnt[M//2]>0:
    ans += 1
print(ans)
0