結果

問題 No.1972 Modulo Set
ユーザー simansiman
提出日時 2022-06-11 09:51:27
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-09-21 18:24:51
合計ジャッジ時間 6,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 94 ms
12,160 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 92 ms
12,288 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 97 ms
12,672 KB
testcase_14 AC 98 ms
12,928 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 89 ms
12,160 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 140 ms
20,352 KB
testcase_23 AC 220 ms
31,488 KB
testcase_24 AC 134 ms
19,328 KB
testcase_25 AC 154 ms
23,424 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 134 ms
20,608 KB
testcase_29 AC 156 ms
23,296 KB
testcase_30 AC 196 ms
29,440 KB
testcase_31 AC 95 ms
12,544 KB
testcase_32 AC 175 ms
26,112 KB
testcase_33 WA -
testcase_34 AC 239 ms
33,280 KB
testcase_35 AC 231 ms
33,280 KB
testcase_36 AC 231 ms
33,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

counter = A.map { |a| a % M }.tally
counter.default = 0

ans = [1, counter[0]].min
checked = Hash.new(false)

counter.each do |i, cnt|
  j = M - i
  next if checked[j]
  checked[i] = true
  checked[j] = true

  cnt_1 = ((i + i) % M == 0) ? [1, counter[i]].min : counter[i]
  cnt_2 = ((j + j) % M == 0) ? [1, counter[j]].min : counter[j]
  ans += [cnt_1, cnt_2].max
end

puts ans
0