結果

問題 No.1972 Modulo Set
ユーザー qibqib
提出日時 2023-04-01 00:46:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 112,832 KB
最終ジャッジ日時 2024-09-23 03:03:36
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,208 KB
testcase_01 AC 38 ms
52,280 KB
testcase_02 AC 39 ms
52,344 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 52 ms
64,424 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 50 ms
65,112 KB
testcase_14 AC 54 ms
66,100 KB
testcase_15 WA -
testcase_16 AC 93 ms
93,472 KB
testcase_17 AC 63 ms
75,104 KB
testcase_18 AC 38 ms
52,760 KB
testcase_19 AC 84 ms
94,460 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 83 ms
92,200 KB
testcase_23 AC 122 ms
104,000 KB
testcase_24 AC 76 ms
87,424 KB
testcase_25 AC 90 ms
99,812 KB
testcase_26 WA -
testcase_27 AC 126 ms
104,232 KB
testcase_28 AC 73 ms
86,436 KB
testcase_29 AC 89 ms
98,284 KB
testcase_30 AC 104 ms
112,832 KB
testcase_31 AC 48 ms
64,376 KB
testcase_32 AC 99 ms
107,932 KB
testcase_33 AC 137 ms
109,580 KB
testcase_34 AC 137 ms
109,420 KB
testcase_35 AC 142 ms
109,228 KB
testcase_36 AC 138 ms
109,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))

if m == 1:
  print("1")
  exit()

cnt = {}
for i in range(n):
  x = a[i] % m
  cnt[x] = cnt.get(x, 0) + 1

ans = 0
used = {}
for x in cnt.keys():
  y = m - x
  if not used.get(x, None) is None or not used.get(y, None) is None:
    continue

  used[x] = True
  used[y] = True
  if x == y:
    ans += 1
  else:
    ans += max(cnt.get(x, 0), cnt.get(y, 0))

print(ans)
0