結果

問題 No.1972 Modulo Set
ユーザー 河野竜也河野竜也
提出日時 2022-06-20 13:08:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 279 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,356 KB
最終ジャッジ日時 2024-10-13 00:53:00
合計ジャッジ時間 4,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 38 ms
12,612 KB
testcase_04 AC 50 ms
13,520 KB
testcase_05 AC 52 ms
14,408 KB
testcase_06 AC 61 ms
16,648 KB
testcase_07 AC 82 ms
19,732 KB
testcase_08 AC 55 ms
15,228 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 46 ms
13,888 KB
testcase_11 AC 77 ms
19,380 KB
testcase_12 AC 34 ms
11,776 KB
testcase_13 AC 39 ms
11,392 KB
testcase_14 AC 36 ms
11,392 KB
testcase_15 AC 78 ms
18,712 KB
testcase_16 AC 85 ms
18,724 KB
testcase_17 AC 48 ms
13,568 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 75 ms
16,840 KB
testcase_20 AC 87 ms
18,576 KB
testcase_21 AC 51 ms
14,308 KB
testcase_22 AC 69 ms
16,012 KB
testcase_23 AC 184 ms
21,372 KB
testcase_24 AC 161 ms
19,132 KB
testcase_25 AC 191 ms
21,056 KB
testcase_26 AC 98 ms
21,432 KB
testcase_27 AC 234 ms
22,972 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 260 ms
25,356 KB
testcase_34 AC 272 ms
25,280 KB
testcase_35 AC 265 ms
25,184 KB
testcase_36 AC 259 ms
25,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
ans=0
d=[0]*(m+1)
for i in range(n):
  b=a[i]%m
  d[b]+=1
if d[0]:
  ans+=1
for i in range(1,(m//2)+1):
  if d[i]>=d[m-i]:
    ans+=d[i]
  else:
    ans+=d[m-i]
if m%2==0:
  if d[m//2]:
    ans-=(d[m//2]-1)
print(ans)
0