結果

問題 No.1972 Modulo Set
ユーザー simansiman
提出日時 2022-06-11 09:52:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,280 KB
最終ジャッジ日時 2024-10-05 01:43:32
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 92 ms
13,696 KB
testcase_04 AC 94 ms
14,464 KB
testcase_05 AC 97 ms
14,848 KB
testcase_06 AC 109 ms
16,640 KB
testcase_07 AC 125 ms
19,072 KB
testcase_08 AC 95 ms
15,104 KB
testcase_09 AC 78 ms
12,288 KB
testcase_10 AC 92 ms
14,592 KB
testcase_11 AC 123 ms
19,328 KB
testcase_12 AC 85 ms
12,928 KB
testcase_13 AC 81 ms
12,672 KB
testcase_14 AC 80 ms
12,928 KB
testcase_15 AC 127 ms
21,632 KB
testcase_16 AC 136 ms
22,272 KB
testcase_17 AC 95 ms
15,488 KB
testcase_18 AC 74 ms
12,288 KB
testcase_19 AC 121 ms
21,120 KB
testcase_20 AC 137 ms
22,656 KB
testcase_21 AC 99 ms
16,256 KB
testcase_22 AC 118 ms
20,352 KB
testcase_23 AC 179 ms
31,488 KB
testcase_24 AC 109 ms
19,072 KB
testcase_25 AC 132 ms
23,296 KB
testcase_26 AC 143 ms
24,064 KB
testcase_27 AC 180 ms
31,744 KB
testcase_28 AC 114 ms
20,736 KB
testcase_29 AC 130 ms
23,424 KB
testcase_30 AC 159 ms
29,440 KB
testcase_31 AC 79 ms
12,672 KB
testcase_32 AC 148 ms
26,112 KB
testcase_33 AC 192 ms
33,152 KB
testcase_34 AC 199 ms
33,152 KB
testcase_35 AC 200 ms
33,152 KB
testcase_36 AC 196 ms
33,280 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 = 0
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