結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,272 KB
testcase_01 AC 37 ms
52,700 KB
testcase_02 AC 40 ms
52,256 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 52 ms
65,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 49 ms
64,056 KB
testcase_14 AC 52 ms
66,328 KB
testcase_15 WA -
testcase_16 AC 92 ms
93,732 KB
testcase_17 AC 63 ms
75,600 KB
testcase_18 AC 37 ms
52,628 KB
testcase_19 AC 84 ms
93,204 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 80 ms
92,484 KB
testcase_23 AC 122 ms
104,184 KB
testcase_24 AC 76 ms
86,760 KB
testcase_25 AC 88 ms
99,996 KB
testcase_26 WA -
testcase_27 AC 122 ms
104,188 KB
testcase_28 AC 71 ms
86,788 KB
testcase_29 AC 84 ms
98,468 KB
testcase_30 AC 103 ms
112,972 KB
testcase_31 AC 49 ms
62,872 KB
testcase_32 AC 97 ms
108,044 KB
testcase_33 AC 136 ms
109,160 KB
testcase_34 AC 136 ms
109,600 KB
testcase_35 AC 136 ms
109,296 KB
testcase_36 AC 139 ms
109,352 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))

if ans == 0:
  ans += 1

print(ans)
0