結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 44 ms
12,612 KB
testcase_04 AC 46 ms
13,652 KB
testcase_05 AC 50 ms
14,532 KB
testcase_06 AC 62 ms
16,772 KB
testcase_07 AC 80 ms
19,744 KB
testcase_08 AC 55 ms
15,220 KB
testcase_09 AC 29 ms
11,136 KB
testcase_10 AC 47 ms
14,012 KB
testcase_11 AC 82 ms
19,508 KB
testcase_12 AC 36 ms
11,904 KB
testcase_13 AC 37 ms
11,648 KB
testcase_14 AC 36 ms
11,648 KB
testcase_15 AC 78 ms
18,836 KB
testcase_16 AC 82 ms
18,848 KB
testcase_17 AC 47 ms
13,820 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 73 ms
16,972 KB
testcase_20 AC 83 ms
18,704 KB
testcase_21 AC 50 ms
14,304 KB
testcase_22 AC 67 ms
16,080 KB
testcase_23 AC 183 ms
21,392 KB
testcase_24 AC 143 ms
19,212 KB
testcase_25 AC 171 ms
21,232 KB
testcase_26 AC 98 ms
21,596 KB
testcase_27 AC 230 ms
23,240 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 268 ms
25,356 KB
testcase_34 AC 247 ms
25,404 KB
testcase_35 AC 251 ms
25,440 KB
testcase_36 AC 266 ms
25,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
ans=0
d=[0]*m
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